<?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-05-17T16:31:30Z</updated><author><name>把我的欢乐带给你</name><uri>http://www.cnblogs.com/chiname/</uri></author><generator>feed.cnblogs.com</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中发现这个问题，“Visual Studio .NET 无法创建或打开应用程序。问题很可能是因为本地WEB本地服务器上没有安装所需的组件。请运行Visual Studio .NET安装程序并添加WEB开发组件”。解决方案：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"/><content type="text">问题描述：在CNDotText中发现这个问题，“Visual Studio .NET 无法创建或打开应用程序。问题很可能是因为本地WEB本地服务器上没有安装所需的组件。请运行Visual Studio .NET安装程序并添加WEB开发组件”。解决方案：1、由于dotText的运行虚拟目录需要添加对.*的映射，如果在调试所对应的虚拟目录中也把这个映射添加进去，就会报这个错误，...</content></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"/><content type="text">控件的Enable和Visible属性心得Enable：启用或停止控件；当设置该属性后，控件原来的状态就会丢失。例如dgrdList的数据源绑定后，设置dgrdList.Enable = false;再设置dgrdList.Enable = true且发生IsPostback;此时国想dgrdList中显示数据，就必须重新绑定数据源。Visible: 指示控件是否可见；对控件的状态不发生影响。即设...</content></entry><entry><id>http://www.cnblogs.com/chiname/archive/2005/03/10/116454.html</id><title type="text">用Request.QueryString[] 出现的问题</title><summary type="text">  出于表结构的关系，需要在URL中传递中文参数据，出现的问题如下：1、http://localhost/test.aspx?lanmu=“书” ，用Request.QueryString["lanmu"]，取到的是“书，不是“书“；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"/><content type="text">  出于表结构的关系，需要在URL中传递中文参数据，出现的问题如下：1、http://localhost/test.aspx?lanmu=“书” ，用Request.QueryString["lanmu"]，取到的是“书，不是“书“；2、http://localhost/test.as...</content></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">问题：   由于组件和WEB应用程序放在两个不同的目录中，在VS.NET 2003 中引用组件，编译后该组件的引用路径总是指向到WEB应用程序所在的目录，这样每次修改了组件，在WEB应用程序中都要手动重新引用一下，比较麻烦。 解决方法：   1、选中项目——&gt;属性；   2、在“...</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"/><content type="text">问题：   由于组件和WEB应用程序放在两个不同的目录中，在VS.NET 2003 中引用组件，编译后该组件的引用路径总是指向到WEB应用程序所在的目录，这样每次修改了组件，在WEB应用程序中都要手动重新引用一下，比较麻烦。 解决方法：   1、选中项目——&gt;属性；   2、在“...</content></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 myHashtable = new Hashtable; foreach(DictionaryEntry entry in myHashtable) { &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"/><content type="text">哈希表中的项存储在System.Collections.DictionaryEntry 对象中，可用foreach来遍历哈希表中的值，如下： Hashtable myHashtable = new Hashtable; foreach(DictionaryEntry entry in myHashtable) { &amp;...</content></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"/><content type="text">请点击这里阅读全文</content></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"/><content type="text">请点击这里阅读全文</content></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"/><content type="text">1.工厂模式12.工厂模式2</content></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"/><content 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...</content></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 == ""); 实践证明用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"/><content type="text">三种常用的字符串判空串方法： Length法：bool isEmpty = (str.Length == 0); Empty法：bool isEmpty = (str == String.Empty); General法：bool isEmpty = (str == ""); 实践证明用Length方法判空是最快的（在32位系统上，System.Int32运算最快了），注意只有...</content></entry></feed>
