<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_chiname</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/7621/rss</id><updated>2012-02-07T14:35:01Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/chiname/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/7621/rss"/><entry><id>http://www.cnblogs.com/chiname/archive/2005/06/02/166645.html</id><title type="text">“Visual Studio .NET 无法创建或打开应用程序。问题很可能是因为本地WEB本地服务器上没有安装所需的组件。请运行Visual Studio .NET安装程序并添加WEB开发组件“的一种解决方案</title><summary type="text">问题描述：在CNDotText中发现这个问题，&amp;#8220;Visual Studio .NET 无法创建或打开应用程序。问题很可能是因为本地WEB本地服务器上没有安装所需的组件。请运行Visual Studio .NET安装程序并添加WEB开发组件&amp;#8221;。解决方案：1、由于dotText的运行虚拟目录需要添加对.*的映射，如果在调试所对应的虚拟目录中也把这个映射添加进去，就会报这个错误，...</summary><published>2005-06-02T05:02:00Z</published><updated>2005-06-02T05:02:00Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><link rel="alternate" href="http://www.cnblogs.com/chiname/archive/2005/06/02/166645.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/chiname/archive/2005/06/02/166645.html"/></entry><entry><id>http://www.cnblogs.com/chiname/archive/2005/04/07/132875.html</id><title type="text">控件的Enable和Visible属性心得</title><summary type="text">控件的Enable和Visible属性心得Enable：启用或停止控件；当设置该属性后，控件原来的状态就会丢失。例如dgrdList的数据源绑定后，设置dgrdList.Enable = false;再设置dgrdList.Enable = true且发生IsPostback;此时国想dgrdList中显示数据，就必须重新绑定数据源。Visible: 指示控件是否可见；对控件的状态不发生影响。即设...</summary><published>2005-04-07T01:37:00Z</published><updated>2005-04-07T01:37:00Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><link rel="alternate" href="http://www.cnblogs.com/chiname/archive/2005/04/07/132875.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/chiname/archive/2005/04/07/132875.html"/></entry><entry><id>http://www.cnblogs.com/chiname/archive/2005/03/10/116454.html</id><title type="text">用Request.QueryString[] 出现的问题</title><summary type="text">&amp;#160;&amp;#160;&amp;#160; 出于表结构的关系，需要在URL中传递中文参数据，出现的问题如下：1、http://localhost/test.aspx?lanmu=&amp;#8220;书&amp;#8221; ，用Request.QueryString[&amp;quot;lanmu&amp;quot;]，取到的是&amp;#8220;书，不是&amp;#8220;书&amp;#8220;；2、http://localhost/test.as...</summary><published>2005-03-10T13:47:00Z</published><updated>2005-03-10T13:47:00Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><link rel="alternate" href="http://www.cnblogs.com/chiname/archive/2005/03/10/116454.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/chiname/archive/2005/03/10/116454.html"/></entry><entry><id>http://www.cnblogs.com/chiname/archive/2005/03/03/112368.html</id><title type="text">VS.NET 2003调用组件时总是不能指向到正确的路径的解决方法</title><summary type="text">问题： &amp;#160;&amp;#160;&amp;#160; 由于组件和WEB应用程序放在两个不同的目录中，在VS.NET 2003 中引用组件，编译后该组件的引用路径总是指向到WEB应用程序所在的目录，这样每次修改了组件，在WEB应用程序中都要手动重新引用一下，比较麻烦。 解决方法： &amp;#160;&amp;#160;&amp;#160; 1、选中项目——&amp;gt;属性； &amp;#160;&amp;#160;&amp;#160; 2、在&amp;#8220;...</summary><published>2005-03-03T11:41:00Z</published><updated>2005-03-03T11:41:00Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><link rel="alternate" href="http://www.cnblogs.com/chiname/archive/2005/03/03/112368.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/chiname/archive/2005/03/03/112368.html"/></entry><entry><id>http://www.cnblogs.com/chiname/archive/2004/12/30/84385.html</id><title type="text">操作哈希表</title><summary type="text">哈希表中的项存储在System.Collections.DictionaryEntry 对象中，可用foreach来遍历哈希表中的值，如下： Hashtable&amp;#160;myHashtable&amp;#160;=&amp;#160;new&amp;#160;Hashtable; foreach(DictionaryEntry&amp;#160;entry&amp;#160;in&amp;#160;myHashtable) { &amp;#160;&amp;...</summary><published>2004-12-30T08:43:00Z</published><updated>2004-12-30T08:43:00Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><link rel="alternate" href="http://www.cnblogs.com/chiname/archive/2004/12/30/84385.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/chiname/archive/2004/12/30/84385.html"/></entry><entry><id>http://www.cnblogs.com/chiname/archive/2004/12/15/77501.html</id><title type="text">运行petshop时，点击某一项时出现一堆“？”的错误页面及提示“计算机名/ＡＳＰＮＥＴ没有权限”的解决方案</title><summary type="text">请点击这里阅读全文</summary><published>2004-12-15T08:14:00Z</published><updated>2004-12-15T08:14:00Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><link rel="alternate" href="http://www.cnblogs.com/chiname/archive/2004/12/15/77501.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/chiname/archive/2004/12/15/77501.html"/></entry><entry><id>http://www.cnblogs.com/chiname/archive/2004/12/15/77353.html</id><title type="text">遇到一个问题“安装程序没有访问目录C:\Inetpub\wwwroot的权限”</title><summary type="text">请点击这里阅读全文</summary><published>2004-12-15T03:20:00Z</published><updated>2004-12-15T03:20:00Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><link rel="alternate" href="http://www.cnblogs.com/chiname/archive/2004/12/15/77353.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/chiname/archive/2004/12/15/77353.html"/></entry><entry><id>http://www.cnblogs.com/chiname/archive/2004/12/14/76969.html</id><title type="text">使用工厂模式的两篇文章对比看会有比较好的效果</title><summary type="text">1.工厂模式12.工厂模式2</summary><published>2004-12-14T07:00:00Z</published><updated>2004-12-14T07:00:00Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><link rel="alternate" href="http://www.cnblogs.com/chiname/archive/2004/12/14/76969.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/chiname/archive/2004/12/14/76969.html"/></entry><entry><id>http://www.cnblogs.com/chiname/archive/2004/12/08/74518.html</id><title type="text">开源的.NET源码</title><summary type="text">1.ASP.NET Starter Kit Portal Starter Kit (入口网站入门套件) Commerce Starter Kit (电子商务入门套件) Reports Starter Kit (报表产生入门套件) Time Tracker Starter Kit (项目追踪入门套件) Community Starter Kit (论坛入门套件) Issue Tracker Star...</summary><published>2004-12-08T09:15:00Z</published><updated>2004-12-08T09:15:00Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><link rel="alternate" href="http://www.cnblogs.com/chiname/archive/2004/12/08/74518.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/chiname/archive/2004/12/08/74518.html"/></entry><entry><id>http://www.cnblogs.com/chiname/archive/2004/12/03/72353.html</id><title type="text">用哪种方法判断字符串为空更快速</title><summary type="text">三种常用的字符串判空串方法： Length法：bool isEmpty = (str.Length == 0); Empty法：bool isEmpty = (str == String.Empty); General法：bool isEmpty = (str == &amp;quot;&amp;quot;); 实践证明用Length方法判空是最快的（在32位系统上，System.Int32运算最快了），注意只有...</summary><published>2004-12-03T02:14:00Z</published><updated>2004-12-03T02:14:00Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><link rel="alternate" href="http://www.cnblogs.com/chiname/archive/2004/12/03/72353.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/chiname/archive/2004/12/03/72353.html"/></entry></feed>
