<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>守望轩</title>
	
	<link>http://www.watch-life.net</link>
	<description>喧闹网络上一个小轩馆,并无与众不同的“惊人”之处,  宁静的小角落 ,守望生活.</description>
	<lastBuildDate>Mon, 09 Nov 2009 11:12:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/watch-life" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>web developer tips (61):如何创建Asp.net Dynamic Data网站</title>
		<link>http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html</link>
		<comments>http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html#comments</comments>
		<pubDate>Mon, 09 Nov 2009 11:12:42 +0000</pubDate>
		<dc:creator>xjb</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Dynamic Data]]></category>
		<category><![CDATA[LINQ to SQL]]></category>
		<category><![CDATA[O/R 设计器]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[web developer tips]]></category>
		<category><![CDATA[动态数据]]></category>

		<guid isPermaLink="false">http://www.watch-life.net/?p=468</guid>
		<description><![CDATA[原文地址:How to create an ASP.Net Dynamic Data Web Site
如果你的网站是大量数据来驱动的，那么，这里有个很简单而快速的方法来构建一个网站。条件是需要安装Visual Studio 2008 SP1 或者  Visual Web Developer 2008 Express SP1
Dynamic Data（动态数据） 网站利用的是被称为“脚手架（Scaffolding)”机制，利用这种机制可以让Asp.net通过数据模型，为数据表生成网页，生成的网页具有每个数据表的插入、删除和更新的功能。
以下为创建动态数据网站的步骤：
http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html
1、创建一个Dynamic Data 网站
菜单：文件+新建+网站 ，选择“Dynamic Data 网站”模板，指定路径和命名后，单击“确定”。

2、给站点添加数据
复制pubs.mdf 到 App_Data目录下
3、使用 LINQ to SQL创建数据模板
右键单击App_Data添加 LINQ to SQL Classes，命名为DataClasses.dbml，选择这个文件可以用 O/R 设计器打开。

4、拖拽表到  O/R 设计器（Object Relational Designer.）
从服务器浏览器，拖拽Authors 表到O/R 设计器，保存你DataClassses.dbml

5、Visual Studio会在.dbml 节点下创建两个文件：DataClasses.dbml.layout and DataCalsses.designer.vb （这里选择的语言是vb）
在DataCalsses.designer.vb里创建了一个名为DataClassesDataContext 的 Partial Public Class，同时包含了Author的表的实体类。
6、在Global.asax里注册数据内容
打开 global.asax [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/NipsbcaQkjc-zg1v9w2bvgWFNjk/0/da"><img src="http://feedads.g.doubleclick.net/~a/NipsbcaQkjc-zg1v9w2bvgWFNjk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NipsbcaQkjc-zg1v9w2bvgWFNjk/1/da"><img src="http://feedads.g.doubleclick.net/~a/NipsbcaQkjc-zg1v9w2bvgWFNjk/1/di" border="0" ismap="true"></img></a></p><p>原文地址:<a href="http://blogs.msdn.com/webdevelopertips/archive/2009/05/14/tip-61-did-you-know-how-to-create-an-asp-net-dynamic-data-web-site.aspx" target="_blank">How to create an ASP.Net Dynamic Data Web Site</a></p>
<p>如果你的网站是大量数据来驱动的，那么，这里有个很简单而快速的方法来构建一个网站。条件是需要安装<a href="http://www.watch-life.net/visual-studio/visual-studio-2008-tip-day-index.html" target="_blank">Visual Studio 2008 </a>SP1 或者  Visual Web Developer 2008 Express SP1</p>
<p>Dynamic Data（动态数据） 网站利用的是被称为“脚手架（Scaffolding)”机制，利用这种机制可以让<a href="http://www.watch-life.net/category/aspnet" target="_blank">Asp.net</a>通过数据模型，为数据表生成网页，生成的网页具有每个数据表的插入、删除和更新的功能。</p>
<p>以下为创建动态数据网站的步骤：</p>
<p><a href="http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html" target="_blank">http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html</a></p>
<p>1、创建一个Dynamic Data 网站<br />
菜单：<strong>文件+新建+网站</strong> ，选择“Dynamic Data 网站”模板，指定路径和命名后，单击“确定”。<br />
<img title="New Web Site" height="412" alt="New Web Site" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip61DidyouknowHow.NetDynamicDataWebSite_BD09/New%20Web%20Site_thumb.jpg" width="527" /></p>
<p>2、给站点添加数据<br />
复制<strong>pubs.mdf</strong> 到 App_Data目录下</p>
<p>3、使用 LINQ to SQL创建数据模板<br />
右键单击App_Data添加 <strong>LINQ to SQL Classes</strong>，命名为DataClasses.dbml，选择这个文件可以用 O/R 设计器打开。</p>
<p><img title="LINQ to SQL CLasses" height="420" alt="LINQ to SQL CLasses" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip61DidyouknowHow.NetDynamicDataWebSite_BD09/LINQ%20to%20SQL%20CLasses_thumb.jpg" width="530" /></p>
<p>4、拖拽表到  O/R 设计器（Object Relational Designer.）<br />
从服务器浏览器，拖拽Authors 表到O/R 设计器，保存你DataClassses.dbml<br />
<img title="DataClasses.dbml" height="425" alt="DataClasses.dbml" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip61DidyouknowHow.NetDynamicDataWebSite_BD09/DataClasses.dbml_thumb.jpg" width="523" /></p>
<p>5、<a href="http://www.watch-life.net/category/visual-studio" target="_blank">Visual Studio</a>会在.dbml 节点下创建两个文件：DataClasses.dbml.layout and DataCalsses.designer.vb （这里选择的语言是vb）<br />
在DataCalsses.designer.vb里创建了一个名为DataClassesDataContext 的 Partial Public Class，同时包含了Author的表的实体类。</p>
<p>6、在Global.asax里注册数据内容<br />
打开 global.asax 文件，在RegisterRoutes方法里添加如下代码：<br />
VB的代码：</p>
<div class=code>
model.RegisterContext(GetType(AdventureWorksDataContext), _ New ContextConfiguration() With {.ScaffoldAllTables = True})
</div>
<p><a href="http://www.watch-life.net/category/csharp" target="_blank">C# </a>代码：</p>
<div class=code>model.RegisterContext(typeof(AdventureWorksDataContext), new ContextConfiguration() { ScaffoldAllTables = true });</div>
<p>7、在浏览器里运行网页<br />
在浏览器里打开 default.aspx页面，页面里一个Authors表的链接，单击链接将打开显示Authors表的数据页面，在这个页面里你提供了编辑，删除和插入数据的选项。<br />
<img title="AuthorTable" height="480" alt="AuthorTable" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip61DidyouknowHow.NetDynamicDataWebSite_BD09/AuthorTable_thumb_1.jpg" width="347" /></p>
<p class="akst_link">
</p>
	<h4>你可能也会喜欢以下文章：</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.watch-life.net/visual-studio/visual-studio-2008-tip-day-31.html" title="Visual Studio 2008 每日提示(三十一) (2009-03-02)">Visual Studio 2008 每日提示(三十一)</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/establishing-a-remote-connection-to-a-iis-server-with-self-issued-certificate.html" title="web developer tips (41):用自颁发的证书连接到远程IIS服务器 (2009-09-02)">web developer tips (41):用自颁发的证书连接到远程IIS服务器</a> (0)</li>
	<li><a href="http://www.watch-life.net/life-thinking/new-year-new-plan.html" title="新年新计划 (2008-02-09)">新年新计划</a> (2)</li>
	<li><a href="http://www.watch-life.net/visual-studio/visual-studio-2008-tip-day-13.html" title="Visual Studio 2008 每日提示(十三) (2008-12-21)">Visual Studio 2008 每日提示(十三)</a> (1)</li>
	<li><a href="http://www.watch-life.net/visual-studio/add-intellisense-from-script-libraries-for-js-files.html" title="web developer tips (35):为js文件中的脚本库添加智能提示 (2009-08-14)">web developer tips (35):为js文件中的脚本库添加智能提示</a> (0)</li>
	<li><a href="http://www.watch-life.net/it-review/visual-studio-2008-ambition.html" title="&#8220;Visual Studio 2008&#8243;背后的勃勃野心 (2008-02-10)">&#8220;Visual Studio 2008&#8243;背后的勃勃野心</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/set-the-default-view-to-design-view.html" title="web developer tips (19):设置默认视图为设计视图 (2009-07-08)">web developer tips (19):设置默认视图为设计视图</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/visual-studio-2008-tip-day-11.html" title="Visual Studio 2008 每日提示(十一) (2008-12-18)">Visual Studio 2008 每日提示(十一)</a> (0)</li>
</ul>

<p>本文由夏建波发布在<a href='http://www.watch-life/net' target='_blank'>守望轩</a><br />转载请注明作者，出处，以及原始超链接。<br /><a target='_blank'  href='http://www.watch-life.net/?p=468&amp;akst_action=share-this' title='收藏本文'   rel='noindex nofollow'>收藏本文</a> | 评论数：0 | <b><a href='http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html#comment'>评论这篇文章</a></b><br/><b>本文永久链接:</b> <a href='http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html'>http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html</a><br/>关注作者最近动态,欢迎 follow <a href='https://twitter.com/xjb' target='_blank'>xjb@twitter.com</a> 或 <a href='http://fanfou.com/iamxjb' target='_blank'>xjb@fanfou.com</a><br/>联络作者：iamxjb@gmail.com</p>© 2009 守望轩 <a href='http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html'>www.watch-life.net</a><hr /><h3>订阅 www.watch-life.net</h3><p><a href='http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到抓虾</a> | <a href='http://fusion.google.com/add?feedurl=http://feedproxy.google.com/watch-life' target='_blank' id='noline_a'>订阅到google</a> | <a href='http://www.pageflakes.com/subscribe.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到飞鸽</a> | <a href='http://www.rojo.com/add-subscription?resource=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到rojo</a> | <a href='http://reader.yodao.com/#url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到有道</a><br><a href='http://www.bloglines.com/sub/http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到bloglines</a> | <a href='http://add.my.yahoo.com/rss?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到yahoo</a> | <a href='http://www.newsgator.com/ngs/subscriber/subfext.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到newsgator</a> | <a href='http://www.netvibes.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到netvibes</a> | <a href='http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到鲜果</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>月夜慢跑</title>
		<link>http://www.watch-life.net/life-thinking/moon-run.html</link>
		<comments>http://www.watch-life.net/life-thinking/moon-run.html#comments</comments>
		<pubDate>Fri, 06 Nov 2009 02:55:54 +0000</pubDate>
		<dc:creator>xjb</dc:creator>
				<category><![CDATA[随思偶得]]></category>
		<category><![CDATA[慢跑]]></category>
		<category><![CDATA[月夜]]></category>
		<category><![CDATA[畅想]]></category>
		<category><![CDATA[锻炼]]></category>
		<category><![CDATA[长沙]]></category>

		<guid isPermaLink="false">http://www.watch-life.net/?p=467</guid>
		<description><![CDATA[深秋的长沙，寒意浓浓。
这些日子，越来越觉得身体的状况不是很好，想多活动活动，锻炼一下，早上和白天时间都少，于是想着晚上也许可行。选择在饭后的2个小时，大概九点的样子，去隔壁学校的操场跑步，体力好就跑7、8圈，体力不好就跑个4、5圈，轻微的活动一下，稍稍出出汗，算是忙碌的一天后，放松一下。
今夜，一轮明月。一个人，在月光下慢跑，操场上很静，是一种难得的享受。
边跑，边随意地畅想，算是对一天的一个整理。
微微出了点汗，挺舒服的，感觉不错。
慢步回家，10点了。
女儿睡后,洗个澡，来到书桌旁，静静地看会儿书，或者静静地沉思&#8230;..


	你可能也会喜欢以下文章：
	
	初为人父（一） (29)
	长沙版《后天》真实上演？ (4)
	风雪同行，橙色关怀 (3)
	&#8220;暴力摩托&#8221;生涯结束 (9)
	长沙终于放晴了 (2)
	微软创新日，激情安在？ (3)
	寒夜中，温暖的烛光 (2)


本文由夏建波发布在守望轩转载请注明作者，出处，以及原始超链接。收藏本文 &#124; 评论数：2 &#124; 评论这篇文章本文永久链接: http://www.watch-life.net/life-thinking/moon-run.html关注作者最近动态,欢迎 follow xjb@twitter.com 或 xjb@fanfou.com联络作者：iamxjb@gmail.com© 2009 守望轩 www.watch-life.net订阅 www.watch-life.net订阅到抓虾 &#124; 订阅到google &#124; 订阅到飞鸽 &#124; 订阅到rojo &#124; 订阅到有道订阅到bloglines &#124; 订阅到yahoo &#124; 订阅到newsgator &#124; 订阅到netvibes &#124; 订阅到鲜果]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/HFr5rDdU-FpPF7zhJHKlgnGJ0eo/0/da"><img src="http://feedads.g.doubleclick.net/~a/HFr5rDdU-FpPF7zhJHKlgnGJ0eo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/HFr5rDdU-FpPF7zhJHKlgnGJ0eo/1/da"><img src="http://feedads.g.doubleclick.net/~a/HFr5rDdU-FpPF7zhJHKlgnGJ0eo/1/di" border="0" ismap="true"></img></a></p><p>深秋的长沙，寒意浓浓。<br />
这些日子，越来越觉得身体的状况不是很好，想多活动活动，锻炼一下，早上和白天时间都少，于是想着晚上也许可行。选择在饭后的2个小时，大概九点的样子，去隔壁学校的操场跑步，体力好就跑7、8圈，体力不好就跑个4、5圈，轻微的活动一下，稍稍出出汗，算是忙碌的一天后，放松一下。<br />
今夜，一轮明月。一个人，在月光下慢跑，操场上很静，是一种难得的享受。<br />
边跑，边随意地畅想，算是对一天的一个整理。</p>
<p>微微出了点汗，挺舒服的，感觉不错。</p>
<p>慢步回家，10点了。</p>
<p><a href="http://www.watch-life.net/category/lovely-daughter" target="_blank">女儿</a>睡后,洗个澡，来到书桌旁，静静地看会儿书，或者静静地沉思&#8230;..</p>
<p class="akst_link">
</p>
	<h4>你可能也会喜欢以下文章：</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.watch-life.net/it-review/ms-innovate-day.html" title="微软创新日，激情安在？ (2008-10-17)">微软创新日，激情安在？</a> (3)</li>
	<li><a href="http://www.watch-life.net/life-thinking/changsha-the-after-tomorrow.html" title="长沙版《后天》真实上演？ (2008-01-28)">长沙版《后天》真实上演？</a> (4)</li>
	<li><a href="http://www.watch-life.net/life-thinking/share-happy-time-with-lover-friend.html" title="寒夜中，温暖的烛光 (2008-01-23)">寒夜中，温暖的烛光</a> (2)</li>
	<li><a href="http://www.watch-life.net/life-thinking/orange-solicitude-safety-go-home.html" title="风雪同行，橙色关怀 (2008-02-01)">风雪同行，橙色关怀</a> (3)</li>
	<li><a href="http://www.watch-life.net/life-thinking/road-rash-end.html" title="&#8220;暴力摩托&#8221;生涯结束 (2009-05-07)">&#8220;暴力摩托&#8221;生涯结束</a> (9)</li>
	<li><a href="http://www.watch-life.net/lovely-daughter/begin-be-father-one.html" title="初为人父（一） (2008-03-03)">初为人父（一）</a> (29)</li>
	<li><a href="http://www.watch-life.net/life-thinking/changsha-sun-out.html" title="长沙终于放晴了 (2008-02-03)">长沙终于放晴了</a> (2)</li>
</ul>

<p>本文由夏建波发布在<a href='http://www.watch-life/net' target='_blank'>守望轩</a><br />转载请注明作者，出处，以及原始超链接。<br /><a target='_blank'  href='http://www.watch-life.net/?p=467&amp;akst_action=share-this' title='收藏本文'   rel='noindex nofollow'>收藏本文</a> | 评论数：2 | <b><a href='http://www.watch-life.net/life-thinking/moon-run.html#comment'>评论这篇文章</a></b><br/><b>本文永久链接:</b> <a href='http://www.watch-life.net/life-thinking/moon-run.html'>http://www.watch-life.net/life-thinking/moon-run.html</a><br/>关注作者最近动态,欢迎 follow <a href='https://twitter.com/xjb' target='_blank'>xjb@twitter.com</a> 或 <a href='http://fanfou.com/iamxjb' target='_blank'>xjb@fanfou.com</a><br/>联络作者：iamxjb@gmail.com</p>© 2009 守望轩 <a href='http://www.watch-life.net/life-thinking/moon-run.html'>www.watch-life.net</a><hr /><h3>订阅 www.watch-life.net</h3><p><a href='http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到抓虾</a> | <a href='http://fusion.google.com/add?feedurl=http://feedproxy.google.com/watch-life' target='_blank' id='noline_a'>订阅到google</a> | <a href='http://www.pageflakes.com/subscribe.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到飞鸽</a> | <a href='http://www.rojo.com/add-subscription?resource=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到rojo</a> | <a href='http://reader.yodao.com/#url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到有道</a><br><a href='http://www.bloglines.com/sub/http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到bloglines</a> | <a href='http://add.my.yahoo.com/rss?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到yahoo</a> | <a href='http://www.newsgator.com/ngs/subscriber/subfext.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到newsgator</a> | <a href='http://www.netvibes.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到netvibes</a> | <a href='http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到鲜果</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.watch-life.net/life-thinking/moon-run.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>web developer tips (60):如何对ASP.Net网站进行性能分析</title>
		<link>http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html</link>
		<comments>http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html#comments</comments>
		<pubDate>Thu, 05 Nov 2009 09:13:24 +0000</pubDate>
		<dc:creator>xjb</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[profile]]></category>
		<category><![CDATA[web developer tips]]></category>
		<category><![CDATA[性能分析]]></category>

		<guid isPermaLink="false">http://www.watch-life.net/?p=466</guid>
		<description><![CDATA[原文地址：How to Profile an ASP.Net site?
1、使用Visual Studio Team Edition For Developers 创建一个Asp.netweb应用程序。
http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html 
2、在Page_Load方法里写如下代码




protected void&#160;Page_Load(objectsender,&#160;EventArgs&#160;e)&#160;
{&#160;
&#160;&#160;&#160;&#160;int&#160;sum
= 0;&#160;
&#160;&#160;&#160;&#160;for(int&#160;i
= 0; i &#60; 2000000; i++)&#160;
&#160;&#160;&#160; {&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160; sum += i;&#160;
&#160;&#160;&#160; }&#160;
&#160;&#160;&#160; Response.Write(sum);&#160;
}

3、启动性能向导

4、选择当前应用，点击“下一步”

5、选择“采样”，点击“下一步”

6、单击“完成”.
7、在“性能资源管理器”中，选中“启动并启用分析功能”

8、将会启动IE，执行完后关闭IE。
9、vs将会性能分析报告摘要。

有关性能分析工具参见MSDN：
英文版：Getting Started with Profiling Tools
中文版：分析工具入门


	你可能也会喜欢以下文章：
	
	web developer tips (41):用自颁发的证书连接到远程IIS服务器 (0)
	web developer tips (31):利用IIS 7.0的URL Rewrite 模块产生用户友好的URL (0)
	英文阅读：如何成为更好的程序员 (0)
	备忘：base 标签和ShowModalDialog 、showModelessDialog (0)
	web developer tips (8):创建web用户控件并包含在web页面里 (1)
	web developer tips (26):在 App_Code目录下同时放c#和VB.NET文件 (0)
	web developer [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/6Plo0QZxUQCsrHj6l-pZFgvASeU/0/da"><img src="http://feedads.g.doubleclick.net/~a/6Plo0QZxUQCsrHj6l-pZFgvASeU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6Plo0QZxUQCsrHj6l-pZFgvASeU/1/da"><img src="http://feedads.g.doubleclick.net/~a/6Plo0QZxUQCsrHj6l-pZFgvASeU/1/di" border="0" ismap="true"></img></a></p><p>原文地址：<a href="http://blogs.msdn.com/webdevelopertips/archive/2009/04/30/tip-60-did-you-know-how-to-profiling-an-asp-net-site.aspx" target="_blank">How to Profile an ASP.Net site?</a></p>
<p>1、使用Visual Studio Team Edition For Developers 创建一个<a href="http://www.watch-life.net/category/aspnet" target="_blank">Asp.net</a>web应用程序。</p>
<p><a href="http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html" target="_blank">http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html </a></p>
<p>2、在Page_Load方法里写如下代码</p>
<div class=code>
<p>
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Simsun; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><br />
<span class="Apple-style-span" style="font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: 13px; "><br />
<span style="color: blue; ">protected void<span class="Apple-converted-space">&nbsp;</span></span>Page_Load(<span style="color: blue; ">object</span>sender,<span class="Apple-converted-space">&nbsp;</span><span style="color: rgb(43, 145, 175); ">EventArgs<span class="Apple-converted-space">&nbsp;</span></span>e)<span class="Apple-converted-space">&nbsp;</span><br />
{<span class="Apple-converted-space">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;<span class="Apple-converted-space">&nbsp;</span><span style="color: blue; ">int<span class="Apple-converted-space">&nbsp;</span></span>sum<br />
= 0;<span class="Apple-converted-space">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;<span class="Apple-converted-space">&nbsp;</span><span style="color: blue; ">for</span>(<span style="color: blue; ">int<span class="Apple-converted-space">&nbsp;</span></span>i<br />
= 0; i &lt; 2000000; i++)<span class="Apple-converted-space">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp; {<span class="Apple-converted-space">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sum += i;<span class="Apple-converted-space">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp; }<span class="Apple-converted-space">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp; Response.Write(sum);<span class="Apple-converted-space">&nbsp;</span><br />
}</span></span></p>
</div>
<p>3、启动性能向导<br />
<img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip60DidyouknowHowtoprofilingana.netsite_945F/image_thumb.png" width="506" height="238" /></p>
<p>4、选择当前应用，点击“下一步”<br />
<img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip60DidyouknowHowtoprofilingana.netsite_945F/image4_thumb.png" width="525" height="392" /></p>
<p>5、选择“采样”，点击“下一步”<br />
<img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip60DidyouknowHowtoprofilingana.netsite_945F/image14_thumb.png" width="529" height="395" /></p>
<p>6、单击“完成”.</p>
<p>7、在“性能资源管理器”中，选中“启动并启用分析功能”<br />
<img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip60DidyouknowHowtoprofilingana.netsite_945F/image_thumb_3.png" width="341" height="219" /></p>
<p>8、将会启动IE，执行完后关闭IE。</p>
<p>9、vs将会<a href="http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html" target="_blank">性能分析</a>报告摘要。<br />
<img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip60DidyouknowHowtoprofilingana.netsite_945F/image22_thumb.png" width="526" height="218" /></p>
<p>有关性能分析工具参见MSDN：<br />
英文版：<a href="http://msdn.microsoft.com/en-us/library/bb385749.aspx" target="_blank">Getting Started with Profiling Tools</a><br />
中文版：<a href="http://msdn.microsoft.com/zh-cn/library/bb385749.aspx" target="_blank">分析工具入门</a></p>
<p class="akst_link">
</p>
	<h4>你可能也会喜欢以下文章：</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html" title="web developer tips (57):通过web界面管理web站点配置 (2009-10-30)">web developer tips (57):通过web界面管理web站点配置</a> (1)</li>
	<li><a href="http://www.watch-life.net/vs2005/vss2005-internet-suport.html" title="设置VSS2005使支持通过Internet访问（转） (2007-07-09)">设置VSS2005使支持通过Internet访问（转）</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/add-browsers-to-visual-web-developer-using-the-browse-with-option.html" title="web developer tips (4):在Visual Web Developer中增加浏览器 (2009-06-09)">web developer tips (4):在Visual Web Developer中增加浏览器</a> (3)</li>
	<li><a href="http://www.watch-life.net/visual-studio/turning-off-ie-s-enhanced-security-configuration.html" title="web developer tips (47):脚本远程调试需关闭IE增强安全配置 (2009-09-13)">web developer tips (47):脚本远程调试需关闭IE增强安全配置</a> (1)</li>
	<li><a href="http://www.watch-life.net/visual-studio/how-to-databind-a-listview-control.html" title="web developer tips (5):绑定ListView控件 (2009-06-12)">web developer tips (5):绑定ListView控件</a> (1)</li>
	<li><a href="http://www.watch-life.net/visual-studio/create-nested-master-pages-using-vs-2008.html" title="web developer tips (33)：在vs2008里创建套嵌母版页 (2009-08-11)">web developer tips (33)：在vs2008里创建套嵌母版页</a> (1)</li>
	<li><a href="http://www.watch-life.net/visual-studio/about-the-tag-navigator-feature.html" title="web developer tips (6):关于标记导航功能 (2009-06-14)">web developer tips (6):关于标记导航功能</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.html" title="web developer tips (55):多项目解决方案中设置启动项 (2009-10-28)">web developer tips (55):多项目解决方案中设置启动项</a> (0)</li>
</ul>

<p>本文由夏建波发布在<a href='http://www.watch-life/net' target='_blank'>守望轩</a><br />转载请注明作者，出处，以及原始超链接。<br /><a target='_blank'  href='http://www.watch-life.net/?p=466&amp;akst_action=share-this' title='收藏本文'   rel='noindex nofollow'>收藏本文</a> | 评论数：0 | <b><a href='http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html#comment'>评论这篇文章</a></b><br/><b>本文永久链接:</b> <a href='http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html'>http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html</a><br/>关注作者最近动态,欢迎 follow <a href='https://twitter.com/xjb' target='_blank'>xjb@twitter.com</a> 或 <a href='http://fanfou.com/iamxjb' target='_blank'>xjb@fanfou.com</a><br/>联络作者：iamxjb@gmail.com</p>© 2009 守望轩 <a href='http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html'>www.watch-life.net</a><hr /><h3>订阅 www.watch-life.net</h3><p><a href='http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到抓虾</a> | <a href='http://fusion.google.com/add?feedurl=http://feedproxy.google.com/watch-life' target='_blank' id='noline_a'>订阅到google</a> | <a href='http://www.pageflakes.com/subscribe.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到飞鸽</a> | <a href='http://www.rojo.com/add-subscription?resource=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到rojo</a> | <a href='http://reader.yodao.com/#url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到有道</a><br><a href='http://www.bloglines.com/sub/http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到bloglines</a> | <a href='http://add.my.yahoo.com/rss?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到yahoo</a> | <a href='http://www.newsgator.com/ngs/subscriber/subfext.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到newsgator</a> | <a href='http://www.netvibes.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到netvibes</a> | <a href='http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到鲜果</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>web developer tips (59):粘贴时在VS中自动格式化HTML</title>
		<link>http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html</link>
		<comments>http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html#comments</comments>
		<pubDate>Wed, 04 Nov 2009 16:11:49 +0000</pubDate>
		<dc:creator>xjb</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web developer tips]]></category>
		<category><![CDATA[格式化]]></category>

		<guid isPermaLink="false">http://www.watch-life.net/?p=465</guid>
		<description><![CDATA[原文地址：How you can automatically format unformatted HTML on paste in VS
你需要复制/粘贴大量未格式化的HTML内容到网页表单，在粘贴后总是需要格式化这些HTML，有个简单的方法可以在vs里在粘贴的时候自动格式化HTML。如何做到这一点呢？
http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html
在Visual Studio 2008菜单：工具+选项+文本编辑器+HTML+杂项，选中“粘贴时设置HTML格式”项即可。

选中此项后，只要你粘贴非格式化的HTML，都会被自动格式化。


	你可能也会喜欢以下文章：
	
	web developer tips (8):创建web用户控件并包含在web页面里 (1)
	web developer tips (33)：在vs2008里创建套嵌母版页 (1)
	web developer tips (53):在vs的设计视图编辑gridview的模板 (0)
	web developer tips (13):用ASP.NET Ajax获取浏览器的agent (0)
	web developer tips (37):如何组织Using指令 (0)
	web developer tips (32)：轻松地创建自己的项目模板 (0)
	web developer tips (42):用IIS配置编辑器生成脚本来更新配置 (0)
	web developer tips (12):在Visual Web Developer里创建IIS虚拟目录 (0)


本文由夏建波发布在守望轩转载请注明作者，出处，以及原始超链接。收藏本文 &#124; 评论数：0 &#124; 评论这篇文章本文永久链接: http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html关注作者最近动态,欢迎 follow xjb@twitter.com [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/Zy8FZysTnAP1VpOHl_juuYhnYrs/0/da"><img src="http://feedads.g.doubleclick.net/~a/Zy8FZysTnAP1VpOHl_juuYhnYrs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Zy8FZysTnAP1VpOHl_juuYhnYrs/1/da"><img src="http://feedads.g.doubleclick.net/~a/Zy8FZysTnAP1VpOHl_juuYhnYrs/1/di" border="0" ismap="true"></img></a></p><p>原文地址：<a href="http://blogs.msdn.com/webdevelopertips/archive/2009/04/29/tip-59-did-you-know-how-you-can-automatically-format-unformatted-html-on-paste-in-vs.aspx" target="_blank">How you can automatically format unformatted HTML on paste in VS</a></p>
<p>你需要复制/粘贴大量未格式化的HTML内容到网页表单，在粘贴后总是需要格式化这些HTML，有个简单的方法可以在vs里在粘贴的时候<a href="http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html" target="_blank">自动格式化HTML</a>。如何做到这一点呢？</p>
<p><a href="http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html" target="_blank">http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html</a></p>
<p>在Visual Studio 2008菜单：工具+选项+文本编辑器+HTML+杂项，选中“粘贴时设置HTML格式”项即可。</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="FormatHTMLonPaste" border="0" alt="FormatHTMLonPaste" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip59DidyouknowHowyoucanautomaticallyfor_BF3B/FormatHTMLonPaste_thumb.jpg" width="488" height="379" /></p>
<p>选中此项后，只要你粘贴非格式化的HTML，都会被自动格式化。</p>
<p class="akst_link">
</p>
	<h4>你可能也会喜欢以下文章：</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.watch-life.net/visual-studio/ajax-extender-controls-ui-behaves-differently-in-vs-2008-than-in-vs-2005.html" title="web developer tips (30):在vs2008中Ajax Extender 控件UI与vs2005中差异 (2009-07-27)">web developer tips (30):在vs2008中Ajax Extender 控件UI与vs2005中差异</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/powerful-css-tools-to-create-manage-and-apply-styles.html" title="web developer tips (1):创建、管理、应用样式表的强大工具 (2009-05-19)">web developer tips (1):创建、管理、应用样式表的强大工具</a> (2)</li>
	<li><a href="http://www.watch-life.net/visual-studio/how-to-organize-usings.html" title="web developer tips (37):如何组织Using指令 (2009-08-24)">web developer tips (37):如何组织Using指令</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/iis7-application-pool-s-ping-settings-may-affect-debugging.html" title="web developer tips (48):IIS7应用程序池的“Ping”设置可能影响调试 (2009-09-16)">web developer tips (48):IIS7应用程序池的“Ping”设置可能影响调试</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/register-your-ihttpmodule-depends-on-the-pipeline.html" title="web developer tips (43):通过请求处理管道注册IHttpModule (2009-09-06)">web developer tips (43):通过请求处理管道注册IHttpModule</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html" title="web developer tips (61):如何创建Asp.net Dynamic Data网站 (2009-11-09)">web developer tips (61):如何创建Asp.net Dynamic Data网站</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/create-an-iis-virtual-directory-from-within-visual-web-developer.html" title="web developer tips (12):在Visual Web Developer里创建IIS虚拟目录 (2009-06-26)">web developer tips (12):在Visual Web Developer里创建IIS虚拟目录</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/new-style-builder-can-be-invoked-from-various-other-tool-windows-in-visual-web-developer.html" title="web developer tips (11):在Visual Web Developer中用不同的工具窗口打开样式生成器 (2009-06-25)">web developer tips (11):在Visual Web Developer中用不同的工具窗口打开样式生成器</a> (0)</li>
</ul>

<p>本文由夏建波发布在<a href='http://www.watch-life/net' target='_blank'>守望轩</a><br />转载请注明作者，出处，以及原始超链接。<br /><a target='_blank'  href='http://www.watch-life.net/?p=465&amp;akst_action=share-this' title='收藏本文'   rel='noindex nofollow'>收藏本文</a> | 评论数：0 | <b><a href='http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html#comment'>评论这篇文章</a></b><br/><b>本文永久链接:</b> <a href='http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html'>http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html</a><br/>关注作者最近动态,欢迎 follow <a href='https://twitter.com/xjb' target='_blank'>xjb@twitter.com</a> 或 <a href='http://fanfou.com/iamxjb' target='_blank'>xjb@fanfou.com</a><br/>联络作者：iamxjb@gmail.com</p>© 2009 守望轩 <a href='http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html'>www.watch-life.net</a><hr /><h3>订阅 www.watch-life.net</h3><p><a href='http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到抓虾</a> | <a href='http://fusion.google.com/add?feedurl=http://feedproxy.google.com/watch-life' target='_blank' id='noline_a'>订阅到google</a> | <a href='http://www.pageflakes.com/subscribe.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到飞鸽</a> | <a href='http://www.rojo.com/add-subscription?resource=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到rojo</a> | <a href='http://reader.yodao.com/#url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到有道</a><br><a href='http://www.bloglines.com/sub/http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到bloglines</a> | <a href='http://add.my.yahoo.com/rss?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到yahoo</a> | <a href='http://www.newsgator.com/ngs/subscriber/subfext.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到newsgator</a> | <a href='http://www.netvibes.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到netvibes</a> | <a href='http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到鲜果</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>女儿成长日记(2009-11-03)</title>
		<link>http://www.watch-life.net/lovely-daughter/lovely-daughter-growth-diary-2009-11-03.html</link>
		<comments>http://www.watch-life.net/lovely-daughter/lovely-daughter-growth-diary-2009-11-03.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 10:29:57 +0000</pubDate>
		<dc:creator>xjb</dc:creator>
				<category><![CDATA[家有女儿]]></category>
		<category><![CDATA[女儿]]></category>
		<category><![CDATA[教育]]></category>
		<category><![CDATA[爸爸]]></category>

		<guid isPermaLink="false">http://www.watch-life.net/?p=464</guid>
		<description><![CDATA[2009年10月30
1、女儿在慢慢长大，以前我早上上班，只要一拿起笔记本包，她就抱着我的腿，以为我出去玩不带她，吵着要和我出去，和她反复说爸爸是去上班，不是出去玩，可惜说不通，每每我关了门后在楼梯间就听见她哇哇大哭。而现在呢，每当我要出门上班的时候，我就和她说：爸爸要上班班了。她就好高兴的跑过来，给我一个爱的拥抱,然后在我的脸上亲亲。搞的我都不舍得上班了，对她依依不舍的。
2、回到家，抱着女儿，在脸上亲亲。
“喊声爸爸”
“喊声爸爸”（女儿学着淘气，真够晕的）
“喊我声爸爸”
“喊我声爸爸”（我有些晕）
“喊爸爸”（我改变的策略）
“喊爸爸”（依然如故）
“爸爸”(嘿嘿，最精简的，看女儿咋办)
“&#8230;..” 女儿居然跑了，还回头嘿嘿的笑（我狂晕ing）
3、前几天看了郑渊洁写的一篇文章《请让孩子输在起跑线上》让我有很多的思考。

爱因斯坦说：“想象力比知识重要。”有想象力的人才能进行创造性劳动。想象力和知识是天敌。人在获得知识的过程中，想象力会消失。因为知识符合逻辑，而想象力无章可循。换句话说，知识的本质是科学，想象力的特征是荒诞。人的大脑一山不容二虎：在学龄前，想象力独占鳌头，脑子被想象力占据。上学后，大多数人的想象力将被知识驱逐出境，成为知识渊博但丧失想象力终身只能重复前人发现的知识的人。很少有人能让知识和想象力在自己的大脑里共存，一旦共存，此人就是能进行创造性劳动的成功人士了。在孩子童年时，让其晚接触知识，有利于想象力在孩子的大脑里安营扎寨，倘若孩子成为想象力和知识并存的人，您就能给大师当爹当娘了。

虽然郑渊洁教育自己儿子方式并不一定值得所有人来效仿，但是他的好多教育的理念是值得学习的，他写的童话书，我也很喜欢看。
做父母好多的时候都是站在自己的视角来看待孩子，把我们的期待和理想强加给孩子，老想着让他们按我们的意愿生活。父母需要教孩子不是只有知识，更重要教孩子如何学习、如何快乐生活、如何成长的人生智慧。
有兴趣的朋友不妨去看看他的博客，或许也可以给你不少的启发：http://blog.sina.com.cn/zhyj
4、女儿现在成小大人了，处处都在模仿大人，有图为证

有模有样，还翘着二郎腿呢。:-)
她最喜欢玩我的手机了，可怜我的古董级诺基亚8250，都被她摔了n次。这手机都用了7年了，本来还想用个7年的，这下恐怕没希望了。留个图做纪念吧
。


	你可能也会喜欢以下文章：
	
	对女儿说抱歉 (1)
	女儿成长日记(2009-07-02) (2)
	女儿教老爸课程之:交流 (0)
	该出手时就出手 (0)
	致女儿(八):一周岁 (4)
	初为人父(三) (1)
	做父母的抉择 (2)
	女儿教老爸课程之：耐心 (3)


本文由夏建波发布在守望轩转载请注明作者，出处，以及原始超链接。收藏本文 &#124; 评论数：6 &#124; 评论这篇文章本文永久链接: http://www.watch-life.net/lovely-daughter/lovely-daughter-growth-diary-2009-11-03.html关注作者最近动态,欢迎 follow xjb@twitter.com 或 xjb@fanfou.com联络作者：iamxjb@gmail.com© 2009 守望轩 www.watch-life.net订阅 www.watch-life.net订阅到抓虾 &#124; 订阅到google &#124; 订阅到飞鸽 &#124; 订阅到rojo &#124; 订阅到有道订阅到bloglines &#124; 订阅到yahoo &#124; 订阅到newsgator &#124; 订阅到netvibes &#124; 订阅到鲜果]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/1ANf3OMva0Yz6s5-kdPPZFtMV0M/0/da"><img src="http://feedads.g.doubleclick.net/~a/1ANf3OMva0Yz6s5-kdPPZFtMV0M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1ANf3OMva0Yz6s5-kdPPZFtMV0M/1/da"><img src="http://feedads.g.doubleclick.net/~a/1ANf3OMva0Yz6s5-kdPPZFtMV0M/1/di" border="0" ismap="true"></img></a></p><p>2009年10月30</p>
<p>1、<a href="http://www.watch-life.net/category/lovely-daughter" target="_blank">女儿</a>在慢慢<a href="http://www.watch-life.net/lovely-daughter/lovely-daughter-growth-diary-2009-11-03.html" target="_blank">长大</a>，以前我早上上班，只要一拿起笔记本包，她就抱着我的腿，以为我出去玩不带她，吵着要和我出去，和她反复说爸爸是去上班，不是出去玩，可惜说不通，每每我关了门后在楼梯间就听见她哇哇大哭。而现在呢，每当我要出门上班的时候，我就和她说：爸爸要上班班了。她就好高兴的跑过来，给我一个<a href="http://www.watch-life.net/lovely-daughter/love-embrace.html" target="_blank">爱的拥抱</a>,然后在我的脸上亲亲。搞的我都不舍得上班了，对她依依不舍的。</p>
<p>2、回到家，抱着女儿，在脸上亲亲。<br />
“喊声爸爸”<br />
“喊声爸爸”（女儿学着淘气，真够晕的）<br />
“喊我声爸爸”<br />
“喊我声爸爸”（我有些晕）<br />
“喊爸爸”（我改变的策略）<br />
“喊爸爸”（依然如故）<br />
“爸爸”(嘿嘿，最精简的，看女儿咋办)<br />
“&#8230;..” 女儿居然跑了，还回头嘿嘿的笑（我狂晕ing）</p>
<p>3、前几天看了郑渊洁写的一篇文章《<a href="http://www.watch-life.net/bbs/thread-2547-1-1.html" target="_blank">请让孩子输在起跑线上</a>》让我有很多的思考。</p>
<blockquote><p>
爱因斯坦说：“想象力比知识重要。”有想象力的人才能进行创造性劳动。想象力和知识是天敌。人在获得知识的过程中，想象力会消失。因为知识符合逻辑，而想象力无章可循。换句话说，知识的本质是科学，想象力的特征是荒诞。人的大脑一山不容二虎：在学龄前，想象力独占鳌头，脑子被想象力占据。上学后，大多数人的想象力将被知识驱逐出境，成为知识渊博但丧失想象力终身只能重复前人发现的知识的人。很少有人能让知识和想象力在自己的大脑里共存，一旦共存，此人就是能进行创造性劳动的成功人士了。在孩子童年时，让其晚接触知识，有利于想象力在孩子的大脑里安营扎寨，倘若孩子成为想象力和知识并存的人，您就能给大师当爹当娘了。
</p></blockquote>
<p>虽然郑渊洁教育自己儿子方式并不一定值得所有人来效仿，但是他的好多教育的理念是值得学习的，他写的童话书，我也很喜欢看。<br />
做父母好多的时候都是站在自己的视角来看待孩子，把我们的期待和理想强加给孩子，老想着让他们按我们的意愿生活。父母需要教孩子不是只有知识，更重要教孩子如何学习、如何快乐生活、如何成长的人生智慧。</p>
<p>有兴趣的朋友不妨去看看他的博客，或许也可以给你不少的启发：<a href="http://blog.sina.com.cn/zhyj" target="_blank">http://blog.sina.com.cn/zhyj</a></p>
<p>4、女儿现在成小大人了，处处都在模仿大人，有图为证<br />
<img src="http://www.watch-life.net/images/2009/11/baobao.jpg" alt="女儿" border="0"/><br />
有模有样，还翘着二郎腿呢。:-)</p>
<p>她最喜欢玩我的手机了，可怜我的古董级诺基亚8250，都被她摔了n次。这手机都用了7年了，本来还想用个7年的，这下恐怕没希望了。留个图做纪念吧<br />
<img src="http://img.product.pchome.net/00/00/07/67/767.jpg" alt="诺基亚8250" border="0"/>。</p>
<p class="akst_link">
</p>
	<h4>你可能也会喜欢以下文章：</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.watch-life.net/life-thinking/mid-autumn-festival-notes.html" title="中秋琐记 (2008-09-16)">中秋琐记</a> (2)</li>
	<li><a href="http://www.watch-life.net/child-eye/call-mother-frist.html" title="第一次，喊妈妈 (2008-08-31)">第一次，喊妈妈</a> (2)</li>
	<li><a href="http://www.watch-life.net/lovely-daughter/lovely-daughter-growth-diary-2009-04-28.html" title="女儿成长日记(2009-04-28) (2009-04-28)">女儿成长日记(2009-04-28)</a> (1)</li>
	<li><a href="http://www.watch-life.net/lovely-daughter/rose-urgent-72-hours.html" title="女儿患幼儿急疹的七十二小时 (2008-12-24)">女儿患幼儿急疹的七十二小时</a> (2)</li>
	<li><a href="http://www.watch-life.net/lovely-daughter/about-your-born.html" title="致女儿(一)-关于你的出身 (2008-07-07)">致女儿(一)-关于你的出身</a> (2)</li>
	<li><a href="http://www.watch-life.net/lovely-daughter/daughter-6-months.html" title="女儿半岁了 (2008-08-25)">女儿半岁了</a> (2)</li>
	<li><a href="http://www.watch-life.net/lovely-daughter/father-weekend.html" title="奶爸的周末日程 (2008-12-18)">奶爸的周末日程</a> (4)</li>
	<li><a href="http://www.watch-life.net/lovely-daughter/begin-be-father-one.html" title="初为人父（一） (2008-03-03)">初为人父（一）</a> (29)</li>
</ul>

<p>本文由夏建波发布在<a href='http://www.watch-life/net' target='_blank'>守望轩</a><br />转载请注明作者，出处，以及原始超链接。<br /><a target='_blank'  href='http://www.watch-life.net/?p=464&amp;akst_action=share-this' title='收藏本文'   rel='noindex nofollow'>收藏本文</a> | 评论数：6 | <b><a href='http://www.watch-life.net/lovely-daughter/lovely-daughter-growth-diary-2009-11-03.html#comment'>评论这篇文章</a></b><br/><b>本文永久链接:</b> <a href='http://www.watch-life.net/lovely-daughter/lovely-daughter-growth-diary-2009-11-03.html'>http://www.watch-life.net/lovely-daughter/lovely-daughter-growth-diary-2009-11-03.html</a><br/>关注作者最近动态,欢迎 follow <a href='https://twitter.com/xjb' target='_blank'>xjb@twitter.com</a> 或 <a href='http://fanfou.com/iamxjb' target='_blank'>xjb@fanfou.com</a><br/>联络作者：iamxjb@gmail.com</p>© 2009 守望轩 <a href='http://www.watch-life.net/lovely-daughter/lovely-daughter-growth-diary-2009-11-03.html'>www.watch-life.net</a><hr /><h3>订阅 www.watch-life.net</h3><p><a href='http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到抓虾</a> | <a href='http://fusion.google.com/add?feedurl=http://feedproxy.google.com/watch-life' target='_blank' id='noline_a'>订阅到google</a> | <a href='http://www.pageflakes.com/subscribe.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到飞鸽</a> | <a href='http://www.rojo.com/add-subscription?resource=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到rojo</a> | <a href='http://reader.yodao.com/#url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到有道</a><br><a href='http://www.bloglines.com/sub/http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到bloglines</a> | <a href='http://add.my.yahoo.com/rss?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到yahoo</a> | <a href='http://www.newsgator.com/ngs/subscriber/subfext.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到newsgator</a> | <a href='http://www.netvibes.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到netvibes</a> | <a href='http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到鲜果</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.watch-life.net/lovely-daughter/lovely-daughter-growth-diary-2009-11-03.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>web developer tips (58):在vs里导入导出每一个HTML的标记</title>
		<link>http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html</link>
		<comments>http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html#comments</comments>
		<pubDate>Mon, 02 Nov 2009 17:04:03 +0000</pubDate>
		<dc:creator>xjb</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tag]]></category>
		<category><![CDATA[web developer tips]]></category>
		<category><![CDATA[标记]]></category>

		<guid isPermaLink="false">http://www.watch-life.net/?p=463</guid>
		<description><![CDATA[原文地址：How you can import/ export HTML Per Tag options in VS
如果你自定义了很多单个标签(tag)，同时想导入/导出这些设置，你可以通过菜单：工具+导入导出设置 ，打开导入/导出对话框，很容易实现这一功能。
http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html
想导出自定义的vssettings文件，“导入和导出设置向导”对话框选择“导出选定环境的设置”，然后单击“下一步”

在下一页的对话框里，取消选中“所有设置”项，展开“选项”，在“文本编辑器”里，选中“HTML 标记特性”项，如下图所示：

点击“下一步”，你可以调整设置文件的保存路径和文件名，输入文件名和路径后，单击“完成”

你也可以通过这个设置向导，导入这些设置。


	你可能也会喜欢以下文章：
	
	web developer tips (40):定义母版页的作用范围 (0)
	web developer tips (14):启动网站调试 (1)
	web developer tips (1):创建、管理、应用样式表的强大工具 (2)
	html页面表格导出到excel总结 (3)
	web developer tips (7):在ListView控件里对数据排序 (1)
	web developer tips (52):部署Asp.net web应用须设置debug为false (0)
	web developer tips (32)：轻松地创建自己的项目模板 (0)
	web developer tips (10):Visual Web Developer 2008中新的样式生成器 (0)


本文由夏建波发布在守望轩转载请注明作者，出处，以及原始超链接。收藏本文 &#124; 评论数：0 &#124; 评论这篇文章本文永久链接: http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html关注作者最近动态,欢迎 follow xjb@twitter.com 或 xjb@fanfou.com联络作者：iamxjb@gmail.com© [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/NiwO6U4PuOZ2JJV3GGBE_3o3B_I/0/da"><img src="http://feedads.g.doubleclick.net/~a/NiwO6U4PuOZ2JJV3GGBE_3o3B_I/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NiwO6U4PuOZ2JJV3GGBE_3o3B_I/1/da"><img src="http://feedads.g.doubleclick.net/~a/NiwO6U4PuOZ2JJV3GGBE_3o3B_I/1/di" border="0" ismap="true"></img></a></p><p>原文地址：<a href="http://blogs.msdn.com/webdevelopertips/archive/2009/04/28/did-you-know-how-you-can-import-export-html-per-tag-options-in-vs.aspx" target="_blank">How you can import/ export HTML Per Tag options in VS</a></p>
<p>如果你自定义了很多单个标签(tag)，同时想导入/导出这些设置，你可以通过菜单：<strong>工具+导入导出设置</strong> ，打开导入/导出对话框，很容易实现这一功能。</p>
<p><a href="http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html" target="_blank">http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html</a></p>
<p>想导出自定义的vssettings文件，“导入和导出设置向导”对话框选择“导出选定环境的设置”，然后单击“下一步”</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="HTMLPerTagChoose" border="0" alt="HTMLPerTagChoose" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/DidyouknowHowyoucanimportexportHTMLPerTa_11424/HTMLPerTagChoose_thumb.jpg" width="460" height="456" /></p>
<p>在下一页的对话框里，取消选中“所有设置”项，展开“<strong>选项</strong>”，在“<strong>文本编辑器</strong>”里，选中“<strong>HTML 标记特性</strong>”项，如下图所示：<br />
<img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="HTMLTagSettings" border="0" alt="HTMLTagSettings" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/DidyouknowHowyoucanimportexportHTMLPerTa_11424/HTMLTagSettings_thumb.jpg" width="461" height="480" /></p>
<p>点击“下一步”，你可以调整设置文件的保存路径和文件名，输入文件名和路径后，单击“完成”</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="HTMLPerTagSave" border="0" alt="HTMLPerTagSave" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/DidyouknowHowyoucanimportexportHTMLPerTa_11424/HTMLPerTagSave_thumb.jpg" width="467" height="481" /></p>
<p>你也可以通过这个设置向导，导入这些设置。</p>
<p class="akst_link">
</p>
	<h4>你可能也会喜欢以下文章：</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.watch-life.net/visual-studio/create-an-iis-virtual-directory-from-within-visual-web-developer.html" title="web developer tips (12):在Visual Web Developer里创建IIS虚拟目录 (2009-06-26)">web developer tips (12):在Visual Web Developer里创建IIS虚拟目录</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/ajax-extender-controls-ui-behaves-differently-in-vs-2008-than-in-vs-2005.html" title="web developer tips (30):在vs2008中Ajax Extender 控件UI与vs2005中差异 (2009-07-27)">web developer tips (30):在vs2008中Ajax Extender 控件UI与vs2005中差异</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html" title="web developer tips (57):通过web界面管理web站点配置 (2009-10-30)">web developer tips (57):通过web界面管理web站点配置</a> (1)</li>
	<li><a href="http://www.watch-life.net/programming-notes/html-table-2-excel.html" title="html页面表格导出到excel总结 (2008-06-23)">html页面表格导出到excel总结</a> (3)</li>
	<li><a href="http://www.watch-life.net/visual-studio/how-to-sort-data-using-a-listview-control.html" title="web developer tips (7):在ListView控件里对数据排序 (2009-06-17)">web developer tips (7):在ListView控件里对数据排序</a> (1)</li>
	<li><a href="http://www.watch-life.net/visual-studio/iis7-application-pool-s-ping-settings-may-affect-debugging.html" title="web developer tips (48):IIS7应用程序池的“Ping”设置可能影响调试 (2009-09-16)">web developer tips (48):IIS7应用程序池的“Ping”设置可能影响调试</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/powerful-css-tools-to-create-manage-and-apply-styles.html" title="web developer tips (1):创建、管理、应用样式表的强大工具 (2009-05-19)">web developer tips (1):创建、管理、应用样式表的强大工具</a> (2)</li>
	<li><a href="http://www.watch-life.net/visual-studio/change-the-dynamicdata-folder-location.html" title="web developer tips (45):如何改变动态数据文件夹的位置 (2009-09-09)">web developer tips (45):如何改变动态数据文件夹的位置</a> (0)</li>
</ul>

<p>本文由夏建波发布在<a href='http://www.watch-life/net' target='_blank'>守望轩</a><br />转载请注明作者，出处，以及原始超链接。<br /><a target='_blank'  href='http://www.watch-life.net/?p=463&amp;akst_action=share-this' title='收藏本文'   rel='noindex nofollow'>收藏本文</a> | 评论数：0 | <b><a href='http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html#comment'>评论这篇文章</a></b><br/><b>本文永久链接:</b> <a href='http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html'>http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html</a><br/>关注作者最近动态,欢迎 follow <a href='https://twitter.com/xjb' target='_blank'>xjb@twitter.com</a> 或 <a href='http://fanfou.com/iamxjb' target='_blank'>xjb@fanfou.com</a><br/>联络作者：iamxjb@gmail.com</p>© 2009 守望轩 <a href='http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html'>www.watch-life.net</a><hr /><h3>订阅 www.watch-life.net</h3><p><a href='http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到抓虾</a> | <a href='http://fusion.google.com/add?feedurl=http://feedproxy.google.com/watch-life' target='_blank' id='noline_a'>订阅到google</a> | <a href='http://www.pageflakes.com/subscribe.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到飞鸽</a> | <a href='http://www.rojo.com/add-subscription?resource=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到rojo</a> | <a href='http://reader.yodao.com/#url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到有道</a><br><a href='http://www.bloglines.com/sub/http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到bloglines</a> | <a href='http://add.my.yahoo.com/rss?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到yahoo</a> | <a href='http://www.newsgator.com/ngs/subscriber/subfext.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到newsgator</a> | <a href='http://www.netvibes.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到netvibes</a> | <a href='http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到鲜果</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>web developer tips (57):通过web界面管理web站点配置</title>
		<link>http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html</link>
		<comments>http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html#comments</comments>
		<pubDate>Fri, 30 Oct 2009 03:19:26 +0000</pubDate>
		<dc:creator>xjb</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[web developer tips]]></category>
		<category><![CDATA[Web Site Administration Tool]]></category>
		<category><![CDATA[网站管理工具]]></category>

		<guid isPermaLink="false">http://www.watch-life.net/?p=462</guid>
		<description><![CDATA[原文地址：How to manage web site configuration through a web interface
网站管理工具（Web Site Administration Tool）为你提供一个web界面来管理不同的Web站点的配置.
http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html
1、对于web网站项目，通过菜单：网站+Asp.net配置打开。

2、对于web应用下古墓，通过菜单：项目+Asp.net配置打开。

Visual Studio 会在一个浏览器启动这个工具。你可以通过上方标签来导航或更改各种设置。

有关网站管理工具（Web Site Administration Tool）各种详细的配置，可以参考阅读：Web Site Administration Tool Overview，中文版见：网站管理工具概述


	你可能也会喜欢以下文章：
	
	web developer tips (25):在iis7下规范URLs和重定向 (1)
	web developer tips (40):定义母版页的作用范围 (0)
	web developer tips (21):为Developer Web Server设定固定端口 (0)
	web developer tips (59):粘贴时在VS中自动格式化HTML (0)
	web developer tips (45):如何改变动态数据文件夹的位置 (0)
	web developer tips (24):显示html/css的警告错误或错误 (0)
	web developer tips (27):Microsoft Web Platform (0)
	web developer [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/drkzV89EBgFgqsbfssAiIbWAGjg/0/da"><img src="http://feedads.g.doubleclick.net/~a/drkzV89EBgFgqsbfssAiIbWAGjg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/drkzV89EBgFgqsbfssAiIbWAGjg/1/da"><img src="http://feedads.g.doubleclick.net/~a/drkzV89EBgFgqsbfssAiIbWAGjg/1/di" border="0" ismap="true"></img></a></p><p>原文地址：<a href="http://blogs.msdn.com/webdevelopertips/archive/2009/04/28/tip-56-did-you-know-how-to-manage-web-site-configuration-through-a-web-interface.aspx" target="_blank">How to manage web site configuration through a web interface</a></p>
<p>网站管理工具（Web Site Administration Tool）为你提供一个web界面来管理不同的Web站点的配置.</p>
<p><a href="http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html" target="_blank">http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html</a></p>
<p>1、对于web网站项目，通过菜单：<strong>网站+Asp.net配置</strong>打开。</p>
<p><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip56DidyouknowHowtomanagewebsiteconfigu_896/image_thumb.png" width="206" height="279"></p>
<p>2、对于web应用下古墓，通过菜单：<strong>项目+<a href="http://www.watch-life.net/category/aspnet" target="_blank">Asp.net</a>配置</strong>打开。</p>
<p><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip56DidyouknowHowtomanagewebsiteconfigu_896/image_thumb_1.png" width="191" height="279"></p>
<p>Visual Studio 会在一个浏览器启动这个工具。你可以通过上方标签来导航或更改各种设置。<br />
<img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="image" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip56DidyouknowHowtomanagewebsiteconfigu_896/image_thumb_2.png" width="644" height="284"></p>
<p>有关网站管理工具（Web Site Administration Tool）各种详细的配置，可以参考阅读：<a href="http://msdn.microsoft.com/en-us/library/yy40ytx0.aspx" target="_blank">Web Site Administration Tool Overview</a>，中文版见：<a href="http://msdn.microsoft.com/zh-cn/library/yy40ytx0.aspx" target="_blank">网站管理工具概述</a></p>
<p class="akst_link">
</p>
	<h4>你可能也会喜欢以下文章：</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.watch-life.net/technology-book-review/programming-csharp-bookreview.html" title="温故知新的经典&#8211;书评《Programming C# 》中文版第4版 (2007-10-30)">温故知新的经典&#8211;书评《Programming C# 》中文版第4版</a> (1)</li>
	<li><a href="http://www.watch-life.net/visual-studio/web-deployment-migrate-operation.html" title="web developer tips (46):使用Web Deployment Tool进行Web部署迁移 (2009-09-11)">web developer tips (46):使用Web Deployment Tool进行Web部署迁移</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html" title="web developer tips (58):在vs里导入导出每一个HTML的标记 (2009-11-03)">web developer tips (58):在vs里导入导出每一个HTML的标记</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/the-style-application-toolbar-works-in-both-auto-and-manual-modes.html" title="web developer tips (2):样式应用工具栏的工作模式 (2009-05-24)">web developer tips (2):样式应用工具栏的工作模式</a> (0)</li>
	<li><a href="http://www.watch-life.net/aspnet/iis-contorl-err.html" title="创建控件时出错/lm/w3svc/&#8230; 不是一个有效的iis应用程序&#8221; 的解决办法 (2007-12-13)">创建控件时出错/lm/w3svc/&#8230; 不是一个有效的iis应用程序&#8221; 的解决办法</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/configurationeditor-update-configuration.html" title="web developer tips (42):用IIS配置编辑器生成脚本来更新配置 (2009-09-03)">web developer tips (42):用IIS配置编辑器生成脚本来更新配置</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/know-how-to-scope-master-pages.html" title="web developer tips (40):定义母版页的作用范围 (2009-08-31)">web developer tips (40):定义母版页的作用范围</a> (0)</li>
	<li><a href="http://www.watch-life.net/aspnet/aspnet-textbox-readonly.html" title="比较郁闷的textbox（asp.net 2.0）控件 (2007-11-07)">比较郁闷的textbox（asp.net 2.0）控件</a> (0)</li>
</ul>

<p>本文由夏建波发布在<a href='http://www.watch-life/net' target='_blank'>守望轩</a><br />转载请注明作者，出处，以及原始超链接。<br /><a target='_blank'  href='http://www.watch-life.net/?p=462&amp;akst_action=share-this' title='收藏本文'   rel='noindex nofollow'>收藏本文</a> | 评论数：1 | <b><a href='http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html#comment'>评论这篇文章</a></b><br/><b>本文永久链接:</b> <a href='http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html'>http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html</a><br/>关注作者最近动态,欢迎 follow <a href='https://twitter.com/xjb' target='_blank'>xjb@twitter.com</a> 或 <a href='http://fanfou.com/iamxjb' target='_blank'>xjb@fanfou.com</a><br/>联络作者：iamxjb@gmail.com</p>© 2009 守望轩 <a href='http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html'>www.watch-life.net</a><hr /><h3>订阅 www.watch-life.net</h3><p><a href='http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到抓虾</a> | <a href='http://fusion.google.com/add?feedurl=http://feedproxy.google.com/watch-life' target='_blank' id='noline_a'>订阅到google</a> | <a href='http://www.pageflakes.com/subscribe.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到飞鸽</a> | <a href='http://www.rojo.com/add-subscription?resource=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到rojo</a> | <a href='http://reader.yodao.com/#url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到有道</a><br><a href='http://www.bloglines.com/sub/http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到bloglines</a> | <a href='http://add.my.yahoo.com/rss?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到yahoo</a> | <a href='http://www.newsgator.com/ngs/subscriber/subfext.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到newsgator</a> | <a href='http://www.netvibes.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到netvibes</a> | <a href='http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到鲜果</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.watch-life.net/visual-studio/manage-web-site-configuration-through-a-web-interface.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>web developer tips (56):手动更新JScript的智能感知</title>
		<link>http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html</link>
		<comments>http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html#comments</comments>
		<pubDate>Wed, 28 Oct 2009 17:57:31 +0000</pubDate>
		<dc:creator>xjb</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Intellisens]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Jscript]]></category>
		<category><![CDATA[web developer tips]]></category>
		<category><![CDATA[智能感知]]></category>

		<guid isPermaLink="false">http://www.watch-life.net/?p=461</guid>
		<description><![CDATA[原文地址：How to update JScript Intellisense manually
你喜欢JScript的职能感知（Intellisens）功能，但是有时候你期待在JScript的职能感知里看到变量或方法，却发现无法看到,也许是没有更新，你可以简单的尝试用“更新智能感知”的命令，在调用智能感知以前，手动更新，而不是关闭文件或其他变通的方法。
http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html
1、通过键盘操作
按Ctrl+Shift+j 键，会在状态栏出现“正在更新JScript Intellisens”的消息。

2、通过菜单操作
在编辑器的“源视图”状态
菜单：编辑+ Intellisens+更新JScript Intellisens，会在状态栏出现“正在更新JScript Intellisens”的消息。



	你可能也会喜欢以下文章：
	
	web developer tips (51):使用vs2005和IE8进行调试 (0)
	web developer tips (44):如何在Visual Studio中查看项目文件 (2)
	帮帮我！我不懂JavaScript (3)
	web developer tips (54):取消HTML/ CSS编辑器的智能提示 (0)
	web developer tips (36):使用IIS7.0 应用请求路由模块管理网站的beta版程序 (0)
	web developer tips (17):远程调试使用IIS的web应用 (0)
	web developer tips (5):绑定ListView控件 (1)
	web developer tips (52):部署Asp.net web应用须设置debug为false (0)


本文由夏建波发布在守望轩转载请注明作者，出处，以及原始超链接。收藏本文 &#124; 评论数：0 &#124; 评论这篇文章本文永久链接: http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html关注作者最近动态,欢迎 follow xjb@twitter.com 或 xjb@fanfou.com联络作者：iamxjb@gmail.com© 2009 守望轩 [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/ektWShdjL3LZWyDW57s5bJEzxNs/0/da"><img src="http://feedads.g.doubleclick.net/~a/ektWShdjL3LZWyDW57s5bJEzxNs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ektWShdjL3LZWyDW57s5bJEzxNs/1/da"><img src="http://feedads.g.doubleclick.net/~a/ektWShdjL3LZWyDW57s5bJEzxNs/1/di" border="0" ismap="true"></img></a></p><p>原文地址：<a href="http://blogs.msdn.com/webdevelopertips/archive/2009/04/24/tip-56-did-you-know-how-to-update-jscript-intellisense-manually.aspx" target="_blank">How to update JScript Intellisense manually</a></p>
<p>你喜欢JScript的职能感知（Intellisens）功能，但是有时候你期待在JScript的职能感知里看到变量或方法，却发现无法看到,也许是没有更新，你可以简单的尝试用“更新智能感知”的命令，在调用智能感知以前，<a href="http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html" target="_blank">手动更新</a>，而不是关闭文件或其他变通的方法。<br />
<a href="http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html" target="_blank">http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html</a><br />
<strong>1、通过键盘操作</strong><br />
按<strong>Ctrl+Shift+j </strong>键，会在状态栏出现“正在更新JScript Intellisens”的消息。<br />
<img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="131" alt="Status_Bar" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip56DidyouknowHowtoupdateJScriptIntelli_F8E9/Status_Bar_thumb_1.jpg" width="244" border="0" /></p>
<p><strong>2、通过菜单操作</strong><br />
在编辑器的“源视图”状态<br />
菜单：<strong>编辑+ Intellisens+更新JScript Intellisens</strong>，会在状态栏出现“正在更新JScript Intellisens”的消息。</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="217" alt="Menu" src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/Tip56DidyouknowHowtoupdateJScriptIntelli_F8E9/Menu_thumb.jpg" width="244" border="0" /></p>
<p class="akst_link">
</p>
	<h4>你可能也会喜欢以下文章：</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.watch-life.net/visual-studio/change-the-dynamicdata-folder-location.html" title="web developer tips (45):如何改变动态数据文件夹的位置 (2009-09-09)">web developer tips (45):如何改变动态数据文件夹的位置</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/how-to-enable-edit-and-continue-feature-for-web-application-projects.html" title="web developer tips (29):在web应用项目里启用“编辑并继续”功能 (2009-07-23)">web developer tips (29):在web应用项目里启用“编辑并继续”功能</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/how-to-easily-create-your-own-project-templates.html" title="web developer tips (32)：轻松地创建自己的项目模板 (2009-08-03)">web developer tips (32)：轻松地创建自己的项目模板</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/have-c-and-vb-net-files-inside-your-app-code-directory.html" title="web developer tips (26):在 App_Code目录下同时放c#和VB.NET文件 (2009-07-19)">web developer tips (26):在 App_Code目录下同时放c#和VB.NET文件</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/create-an-asp-net-dynamic-data-web-site.html" title="web developer tips (61):如何创建Asp.net Dynamic Data网站 (2009-11-09)">web developer tips (61):如何创建Asp.net Dynamic Data网站</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/profiling-an-asp-net-site.html" title="web developer tips (60):如何对ASP.Net网站进行性能分析 (2009-11-05)">web developer tips (60):如何对ASP.Net网站进行性能分析</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/how-to-sort-data-using-a-listview-control.html" title="web developer tips (7):在ListView控件里对数据排序 (2009-06-17)">web developer tips (7):在ListView控件里对数据排序</a> (1)</li>
	<li><a href="http://www.watch-life.net/visual-studio/absolute-position-controls-on-copy-paste-or-drag-drop-from-toolbox.html" title="web developer tips (18):从工具箱粘贴或拖拽控件时进行绝对定位 (2009-07-07)">web developer tips (18):从工具箱粘贴或拖拽控件时进行绝对定位</a> (0)</li>
</ul>

<p>本文由夏建波发布在<a href='http://www.watch-life/net' target='_blank'>守望轩</a><br />转载请注明作者，出处，以及原始超链接。<br /><a target='_blank'  href='http://www.watch-life.net/?p=461&amp;akst_action=share-this' title='收藏本文'   rel='noindex nofollow'>收藏本文</a> | 评论数：0 | <b><a href='http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html#comment'>评论这篇文章</a></b><br/><b>本文永久链接:</b> <a href='http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html'>http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html</a><br/>关注作者最近动态,欢迎 follow <a href='https://twitter.com/xjb' target='_blank'>xjb@twitter.com</a> 或 <a href='http://fanfou.com/iamxjb' target='_blank'>xjb@fanfou.com</a><br/>联络作者：iamxjb@gmail.com</p>© 2009 守望轩 <a href='http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html'>www.watch-life.net</a><hr /><h3>订阅 www.watch-life.net</h3><p><a href='http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到抓虾</a> | <a href='http://fusion.google.com/add?feedurl=http://feedproxy.google.com/watch-life' target='_blank' id='noline_a'>订阅到google</a> | <a href='http://www.pageflakes.com/subscribe.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到飞鸽</a> | <a href='http://www.rojo.com/add-subscription?resource=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到rojo</a> | <a href='http://reader.yodao.com/#url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到有道</a><br><a href='http://www.bloglines.com/sub/http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到bloglines</a> | <a href='http://add.my.yahoo.com/rss?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到yahoo</a> | <a href='http://www.newsgator.com/ngs/subscriber/subfext.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到newsgator</a> | <a href='http://www.netvibes.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到netvibes</a> | <a href='http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到鲜果</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.watch-life.net/visual-studio/update-jscript-intellisense-manually.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>web developer tips (55):多项目解决方案中设置启动项</title>
		<link>http://www.watch-life.net/visual-studio/change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.html</link>
		<comments>http://www.watch-life.net/visual-studio/change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.html#comments</comments>
		<pubDate>Wed, 28 Oct 2009 04:31:34 +0000</pubDate>
		<dc:creator>xjb</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[web developer tips]]></category>
		<category><![CDATA[启动项]]></category>

		<guid isPermaLink="false">http://www.watch-life.net/?p=458</guid>
		<description><![CDATA[原文地址：How to change Start-Up Options and Instances of ASP.Net Development Server in a Multi-project Solution
如果在你的解决方案里有多个项目，可以通过如下解决方案的属性来设置启动项。右键单击解决方案，选择“属性”，打开如下对话框

如果在解决方案里有一个以上的web项目（比如 web网站项目和web应用项目），只能选择一个启动项目，可以选择“单启动项目”（或者在解决方案的上下文菜单选择某个项目，选择“设置为启动项目”）。尽管如此设置后，当你通过ASP.Net Development Server （开发服务器）启动调试应用程序时，在系统托盘会出现多个ASP.Net Development Servers 的实例，如下图所示

http://www.watch-life.net/visual-studio/change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.html
这里很重要的一点需要注意，ASP.NET Development Server不能处理超过一个的web应用/网站，如果你想实现这个功能，就需要使用IIS来替换ASP.NET Development server。
在一个相同的解决方案里有多个web应用或者web网站，实际上你只需要调试其中之一，在这种情况下，不宜使用ASP.NET Development server运行多个实例。


	你可能也会喜欢以下文章：
	
	web developer tips (5):绑定ListView控件 (1)
	web developer tips (14):启动网站调试 (1)
	web developer tips (59):粘贴时在VS中自动格式化HTML (0)
	web developer tips (33)：在vs2008里创建套嵌母版页 (1)
	web developer tips (9):在Web.config文件中注册web用户控件 (1)
	web developer tips (53):在vs的设计视图编辑gridview的模板 (0)
	防止刷新重复提交数据解决方法的分析 (3)
	web developer tips [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/SOGTZ5k6lbaxdg3TfZTJD3tJr8s/0/da"><img src="http://feedads.g.doubleclick.net/~a/SOGTZ5k6lbaxdg3TfZTJD3tJr8s/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SOGTZ5k6lbaxdg3TfZTJD3tJr8s/1/da"><img src="http://feedads.g.doubleclick.net/~a/SOGTZ5k6lbaxdg3TfZTJD3tJr8s/1/di" border="0" ismap="true"></img></a></p><p>原文地址：<a href="http://blogs.msdn.com/webdevelopertips/archive/2009/04/24/tip-55-did-you-know-how-to-change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.aspx" target="_blank">How to change Start-Up Options and Instances of ASP.Net Development Server in a Multi-project Solution</a></p>
<p>如果在你的解决方案里有多个项目，可以通过如下解决方案的属性来设置启动项。右键单击解决方案，选择“属性”，打开如下对话框<br />
<IMG border=0 alt=image src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/fb9b501490ff_B55/image%5B11%5D_4.png" width=537 height=337 mce_src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/fb9b501490ff_B55/image%5B11%5D_4.png"></p>
<p>如果在解决方案里有一个以上的web项目（比如 web网站项目和web应用项目），只能选择一个启动项目，可以选择“单启动项目”（或者在解决方案的上下文菜单选择某个项目，选择“设置为启动项目”）。尽管如此设置后，当你通过<a href="http://www.watch-life.net/category/aspnet" target="_blank">ASP.Net</a> Development Server （开发服务器）启动调试应用程序时，在系统托盘会出现多个ASP.Net Development Servers 的实例，如下图所示<br />
<IMG border=0 alt=image src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/fb9b501490ff_B55/image_thumb_2.png" width=244 height=103 mce_src="http://blogs.msdn.com/blogfiles/webdevelopertips/WindowsLiveWriter/fb9b501490ff_B55/image_thumb_2.png"></p>
<p><a href="http://www.watch-life.net/visual-studio/change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.html" target="_blank">http://www.watch-life.net/visual-studio/change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.html</a></p>
<p>这里很重要的一点需要注意，ASP.NET Development Server不能处理超过一个的web应用/网站，如果你想实现这个功能，就需要使用<a href="http://www.watch-life.net/tag/iis" rel="tag" target="_blank">IIS</a>来替换ASP.NET Development server。</p>
<p>在一个相同的解决方案里有多个web应用或者web网站，实际上你只需要调试其中之一，在这种情况下，不宜使用ASP.NET Development server运行多个实例。</p>
<p class="akst_link">
</p>
	<h4>你可能也会喜欢以下文章：</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.watch-life.net/visual-studio/display-css-html-errors-as-warnings-or-as-errors.html" title="web developer tips (24):显示html/css的警告错误或错误 (2009-07-17)">web developer tips (24):显示html/css的警告错误或错误</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/improve-performance-of-page-and-server-control-processing.html" title="web developer tips (22):提高页面和服务器控件加载速度 (2009-07-15)">web developer tips (22):提高页面和服务器控件加载速度</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/register-your-asp-net-web-user-controls-in-web-config.html" title="web developer tips (9):在Web.config文件中注册web用户控件 (2009-06-18)">web developer tips (9):在Web.config文件中注册web用户控件</a> (1)</li>
	<li><a href="http://www.watch-life.net/visual-studio/use-failed-request-tracing-to-trace-rewrite-rules.html" title="web developer tips (38):如何用请求失败记录追踪重写规则 (2009-08-27)">web developer tips (38):如何用请求失败记录追踪重写规则</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/how-you-can-automatically-format-unformatted-html-on-paste-in-vs.html" title="web developer tips (59):粘贴时在VS中自动格式化HTML (2009-11-05)">web developer tips (59):粘贴时在VS中自动格式化HTML</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/how-to-databind-a-listview-control.html" title="web developer tips (5):绑定ListView控件 (2009-06-12)">web developer tips (5):绑定ListView控件</a> (1)</li>
	<li><a href="http://www.watch-life.net/visual-studio/get-the-browser-agent-using-asp-net-ajax.html" title="web developer tips (13):用ASP.NET Ajax获取浏览器的agent (2009-06-28)">web developer tips (13):用ASP.NET Ajax获取浏览器的agent</a> (0)</li>
	<li><a href="http://www.watch-life.net/visual-studio/import-export-html-per-tag-options-in-vs.html" title="web developer tips (58):在vs里导入导出每一个HTML的标记 (2009-11-03)">web developer tips (58):在vs里导入导出每一个HTML的标记</a> (0)</li>
</ul>

<p>本文由夏建波发布在<a href='http://www.watch-life/net' target='_blank'>守望轩</a><br />转载请注明作者，出处，以及原始超链接。<br /><a target='_blank'  href='http://www.watch-life.net/?p=458&amp;akst_action=share-this' title='收藏本文'   rel='noindex nofollow'>收藏本文</a> | 评论数：0 | <b><a href='http://www.watch-life.net/visual-studio/change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.html#comment'>评论这篇文章</a></b><br/><b>本文永久链接:</b> <a href='http://www.watch-life.net/visual-studio/change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.html'>http://www.watch-life.net/visual-studio/change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.html</a><br/>关注作者最近动态,欢迎 follow <a href='https://twitter.com/xjb' target='_blank'>xjb@twitter.com</a> 或 <a href='http://fanfou.com/iamxjb' target='_blank'>xjb@fanfou.com</a><br/>联络作者：iamxjb@gmail.com</p>© 2009 守望轩 <a href='http://www.watch-life.net/visual-studio/change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.html'>www.watch-life.net</a><hr /><h3>订阅 www.watch-life.net</h3><p><a href='http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到抓虾</a> | <a href='http://fusion.google.com/add?feedurl=http://feedproxy.google.com/watch-life' target='_blank' id='noline_a'>订阅到google</a> | <a href='http://www.pageflakes.com/subscribe.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到飞鸽</a> | <a href='http://www.rojo.com/add-subscription?resource=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到rojo</a> | <a href='http://reader.yodao.com/#url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到有道</a><br><a href='http://www.bloglines.com/sub/http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到bloglines</a> | <a href='http://add.my.yahoo.com/rss?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到yahoo</a> | <a href='http://www.newsgator.com/ngs/subscriber/subfext.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到newsgator</a> | <a href='http://www.netvibes.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到netvibes</a> | <a href='http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到鲜果</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.watch-life.net/visual-studio/change-start-up-options-and-instances-of-asp-net-development-server-in-a-multi-project-solution.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>windows7 来了</title>
		<link>http://www.watch-life.net/it-review/win7-come.html</link>
		<comments>http://www.watch-life.net/it-review/win7-come.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 04:25:23 +0000</pubDate>
		<dc:creator>xjb</dc:creator>
				<category><![CDATA[IT观察]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[windows7]]></category>
		<category><![CDATA[微软]]></category>

		<guid isPermaLink="false">http://www.watch-life.net/?p=460</guid>
		<description><![CDATA[2009年10月22日晚间Microsoft在正式发布其新一代操作系统Windows 7。这次发布新版操作系统，微软的发布会，相对以前比较低调
上周五（10月23日）看了湖南卫视的节目“天天向上”。没想到这期节目居然是为windows7做宣传。节目很轻松搞笑，一堆微软的帅哥哥美女粉末登场。我觉得这期节目，尽管没有完全展示windows7的特色功能，但借助湖南卫视的影响力，达到了很好的宣传效果。这个宣传创意不错，轻松，娱乐化。

上周五（10月24日）参加了湖南微软NET俱乐部举办的“window7社区发布会”。windows7的发布，给很多的开发者带来新的机会。

左起：xiaohui,陈锐（古董级的微软mvp）,我。
windows 7 来了，不过我还没去体验过呢，windows2003 是用的最长的操作系统了，算算有5年了，很顺手了，一直没舍得换。看着windows7这么多酷炫的功能，已经有想尝试一下的冲动了。
微软是否可以凭借windows7的发布，挽回vista给微软带来的颓势，实现王者归来，恐怕还需要时间的检验。


	你可能也会喜欢以下文章：
	
	微软终于出手了? (2)
	&#8220;Visual Studio 2008&#8243;背后的勃勃野心 (0)
	Visual Studio 2008 每日提示(一) (1)
	中文版Visual Studio 2008  SP1 智能提示为英文的补丁发布 (2)
	帮帮我！我不懂JavaScript (3)
	获得“微软DEV-WOW2009博客达人”优胜奖 (3)
	你的网站值多少钱？ (6)
	web developer tips (27):Microsoft Web Platform (0)


本文由夏建波发布在守望轩转载请注明作者，出处，以及原始超链接。收藏本文 &#124; 评论数：5 &#124; 评论这篇文章本文永久链接: http://www.watch-life.net/it-review/win7-come.html关注作者最近动态,欢迎 follow xjb@twitter.com 或 xjb@fanfou.com联络作者：iamxjb@gmail.com© 2009 守望轩 www.watch-life.net订阅 www.watch-life.net订阅到抓虾 &#124; 订阅到google &#124; 订阅到飞鸽 &#124; 订阅到rojo &#124; 订阅到有道订阅到bloglines &#124; 订阅到yahoo &#124; 订阅到newsgator &#124; 订阅到netvibes [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/oDCrJXRbmabhz632tvtEowOdcDE/0/da"><img src="http://feedads.g.doubleclick.net/~a/oDCrJXRbmabhz632tvtEowOdcDE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/oDCrJXRbmabhz632tvtEowOdcDE/1/da"><img src="http://feedads.g.doubleclick.net/~a/oDCrJXRbmabhz632tvtEowOdcDE/1/di" border="0" ismap="true"></img></a></p><p>2009年10月22日晚间<a href="http://www.microsoft.com/zh/cn/default.aspx" target="_blank">Microsoft</a>在正式发布其新一代操作系统Windows 7。这次发布新版操作系统，<a href="http://www.watch-life.net/tag/微软" rel="tag" target="_blank">微软</a>的发布会，相对以前比较<a href="http://news.cnblogs.com/n/50188/" target="_blank">低调</a></p>
<p>上周五（10月23日）看了<a href="http://www.hunantv.com/" target="_blank">湖南卫视</a>的节目“天天向上”。没想到这期节目居然是为windows7做宣传。节目很轻松搞笑，一堆微软的帅哥哥美女粉末登场。我觉得这期节目，尽管没有完全展示windows7的特色功能，但借助湖南卫视的影响力，达到了很好的宣传效果。这个宣传创意不错，轻松，娱乐化。<br />
<img src="http://www.watch-life.net/images/2009/10/windows7.jpg" alt="windows7" border="0"/></p>
<p>上周五（10月24日）参加了湖南微软NET俱乐部举办的“window7社区发布会”。windows7的发布，给很多的开发者带来新的机会。<br />
<img src="http://www.watch-life.net/images/2009/10/windows7-2.jpg" alt="windows7" border="0"/><br />
左起：<a href="http://www.xiaohui.com" target="_blank">xiaohui</a>,<a href="http://www.applevb.com/" target="_blank">陈锐</a>（古董级的微软mvp）,我。</p>
<p><a href="http://www.watch-life.net/it-review/win7-come.html" target="_blank">windows 7 来了</a>，不过我还没去体验过呢，windows2003 是用的最长的操作系统了，算算有5年了，很顺手了，一直没舍得换。看着windows7这么多酷炫的功能，已经有想尝试一下的冲动了。</p>
<p>微软是否可以凭借windows7的发布，挽回<a href="http://www.microsoft.com/china/windows/windows-vista/" target="_blank">vista</a>给微软带来的颓势，实现王者归来，恐怕还需要时间的检验。</p>
<p class="akst_link">
</p>
	<h4>你可能也会喜欢以下文章：</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.watch-life.net/visual-studio/vs2008-sp1-intellisense.html" title="中文版Visual Studio 2008  SP1 智能提示为英文的补丁发布 (2008-11-28)">中文版Visual Studio 2008  SP1 智能提示为英文的补丁发布</a> (2)</li>
	<li><a href="http://www.watch-life.net/it-review/ms-buy-yahoo-446-hundred-million.html" title="微软终于出手了? (2008-02-05)">微软终于出手了?</a> (2)</li>
	<li><a href="http://www.watch-life.net/javascript/help-i-dont-know-javascript.html" title="帮帮我！我不懂JavaScript (2009-09-30)">帮帮我！我不懂JavaScript</a> (3)</li>
	<li><a href="http://www.watch-life.net/it-review/visual-studio-2008-ambition.html" title="&#8220;Visual Studio 2008&#8243;背后的勃勃野心 (2008-02-10)">&#8220;Visual Studio 2008&#8243;背后的勃勃野心</a> (0)</li>
	<li><a href="http://www.watch-life.net/it-review/ms-innovate-day.html" title="微软创新日，激情安在？ (2008-10-17)">微软创新日，激情安在？</a> (3)</li>
	<li><a href="http://www.watch-life.net/life-thinking/devwow2009-winner.html" title="获得“微软DEV-WOW2009博客达人”优胜奖 (2009-06-05)">获得“微软DEV-WOW2009博客达人”优胜奖</a> (3)</li>
	<li><a href="http://www.watch-life.net/visual-studio/microsoft-web-platform.html" title="web developer tips (27):Microsoft Web Platform (2009-07-20)">web developer tips (27):Microsoft Web Platform</a> (0)</li>
	<li><a href="http://www.watch-life.net/it-review/screen-is-black.html" title="你的屏被“黑”了么？ (2008-10-20)">你的屏被“黑”了么？</a> (4)</li>
</ul>

<p>本文由夏建波发布在<a href='http://www.watch-life/net' target='_blank'>守望轩</a><br />转载请注明作者，出处，以及原始超链接。<br /><a target='_blank'  href='http://www.watch-life.net/?p=460&amp;akst_action=share-this' title='收藏本文'   rel='noindex nofollow'>收藏本文</a> | 评论数：5 | <b><a href='http://www.watch-life.net/it-review/win7-come.html#comment'>评论这篇文章</a></b><br/><b>本文永久链接:</b> <a href='http://www.watch-life.net/it-review/win7-come.html'>http://www.watch-life.net/it-review/win7-come.html</a><br/>关注作者最近动态,欢迎 follow <a href='https://twitter.com/xjb' target='_blank'>xjb@twitter.com</a> 或 <a href='http://fanfou.com/iamxjb' target='_blank'>xjb@fanfou.com</a><br/>联络作者：iamxjb@gmail.com</p>© 2009 守望轩 <a href='http://www.watch-life.net/it-review/win7-come.html'>www.watch-life.net</a><hr /><h3>订阅 www.watch-life.net</h3><p><a href='http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到抓虾</a> | <a href='http://fusion.google.com/add?feedurl=http://feedproxy.google.com/watch-life' target='_blank' id='noline_a'>订阅到google</a> | <a href='http://www.pageflakes.com/subscribe.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到飞鸽</a> | <a href='http://www.rojo.com/add-subscription?resource=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到rojo</a> | <a href='http://reader.yodao.com/#url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到有道</a><br><a href='http://www.bloglines.com/sub/http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到bloglines</a> | <a href='http://add.my.yahoo.com/rss?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到yahoo</a> | <a href='http://www.newsgator.com/ngs/subscriber/subfext.aspx?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到newsgator</a> | <a href='http://www.netvibes.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到netvibes</a> | <a href='http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/watch-life' target='_blank' id='noline_a'>订阅到鲜果</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.watch-life.net/it-review/win7-come.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
