<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_kuku_分类_ASP.NET</title><id>http://feed.cnblogs.com/blog/u/7266/category/12491/rss</id><updated>2012-06-03T02:18:26Z</updated><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/category/12491.html"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/7266/category/12491/rss"/><entry><id>http://www.cnblogs.com/kuku/archive/2010/10/26/1861702.html</id><title type="text">关于智能表单或自定义表单</title><summary type="text">最近公司说我们开发部开发出的产品错误太多，打算买一个智能表单的开发平台，于是找了几家看了看，也看过演示后，公司的领导很兴奋，理想很大，打算买了这个平台后，以后就不用什么程序员了，项目经理边调研一边就打项目大概给做出来了。在几款产品中，公司领导最后选择了一家公司的产品，这是一家小公司，试用了一下他们的测试版，谈谈使用感受和看法：使用这个智能表单可以做一些简单的表格，但是复杂一点的话，实现起来比较...</summary><published>2010-10-26T09:14:00Z</published><updated>2010-10-26T09:14:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2010/10/26/1861702.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2010/10/26/1861702.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/kuku/archive/2007/01/17/622379.html</id><title type="text">完全理解 IDisposable 接口的实现</title><summary type="text">今天在 CNBLOGS 上看到两篇关于 IDisposable 接口的文章，讲得很详细，让我从实现 IDisposable 接口的困惑中解脱出来。文章地址：http://www.cnblogs.com/xlshcn/archive/2007/01/16/idisposable.htmlhttp://www.cnblogs.com/kevinwan/archive/2007/01/16/621869...</summary><published>2007-01-17T02:59:00Z</published><updated>2007-01-17T02:59:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2007/01/17/622379.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2007/01/17/622379.html"/><content type="text">今天在 CNBLOGS 上看到两篇关于 IDisposable 接口的文章，讲得很详细，让我从实现 IDisposable 接口的困惑中解脱出来。文章地址：http://www.cnblogs.com/xlshcn/archive/2007/01/16/idisposable.htmlhttp://www.cnblogs.com/kevinwan/archive/2007/01/16/621869...</content></entry><entry><id>http://www.cnblogs.com/kuku/archive/2007/01/09/615972.html</id><title type="text">GridView 几个受保护的方法的注释</title><summary type="text">CreateChildTable 方法：此方法为 GridView 创建一个表格，正常来说，GridView 只包含一个子控件，也就是使用此方法创建的一个表格，如果需要创建自己的表格，可以重写此方法。CreateRow 方法：此方法是一个受保护的虚拟方法，GridView 中的每一行都是通过调用此方法来创建的，如果需要对行进行一些特殊的处理，可以从 GridViewRow 继承子类，然后使用此方法...</summary><published>2007-01-09T09:07:00Z</published><updated>2007-01-09T09:07:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2007/01/09/615972.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2007/01/09/615972.html"/><content type="text">CreateChildTable 方法：此方法为 GridView 创建一个表格，正常来说，GridView 只包含一个子控件，也就是使用此方法创建的一个表格，如果需要创建自己的表格，可以重写此方法。CreateRow 方法：此方法是一个受保护的虚拟方法，GridView 中的每一行都是通过调用此方法来创建的，如果需要对行进行一些特殊的处理，可以从 GridViewRow 继承子类，然后使用此方法...</content></entry><entry><id>http://www.cnblogs.com/kuku/archive/2004/12/24/81630.html</id><title type="text">在ASP.NET去掉文件的只读属性</title><summary type="text">我们可以使用 System.IO.File 类的 SetAttributes 方法为一个文件设置相关的属性，如： // 为文件加上一个只读的属性 FileAttributes attrs = File.GetAttributes("c:\\a.txt"); File.SetAttributes("c:\\a.txt",...</summary><published>2004-12-24T10:54:00Z</published><updated>2004-12-24T10:54:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2004/12/24/81630.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2004/12/24/81630.html"/><content type="text">我们可以使用 System.IO.File 类的 SetAttributes 方法为一个文件设置相关的属性，如： // 为文件加上一个只读的属性 FileAttributes attrs = File.GetAttributes("c:\\a.txt"); File.SetAttributes("c:\\a.txt",...</content></entry><entry><id>http://www.cnblogs.com/kuku/archive/2004/12/05/73068.html</id><title type="text">.NET中三种数据类型转换的区别:(type), type.Parse, Convert类</title><summary type="text">.NET为我们提供了三种数据类型类转换的方法，她们分别是：(typeName)，此方法适合于类型，type.Parse, 此方法只适于类.NET中的数字类型，还有一种就是使用 Convert 类型来进行类型转换。我看来看看这三种数据类型转换的区别，还是用程序来说明吧：usingSystem;publicclassTypeCast{publicstaticvoidMain(){objectobj1=...</summary><published>2004-12-05T03:13:00Z</published><updated>2004-12-05T03:13:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2004/12/05/73068.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2004/12/05/73068.html"/><content type="text">.NET为我们提供了三种数据类型类转换的方法，她们分别是：(typeName)，此方法适合于类型，type.Parse, 此方法只适于类.NET中的数字类型，还有一种就是使用 Convert 类型来进行类型转换。我看来看看这三种数据类型转换的区别，还是用程序来说明吧：usingSystem;publicclassTypeCast{publicstaticvoidMain(){objectobj1=...</content></entry><entry><id>http://www.cnblogs.com/kuku/archive/2004/11/08/61408.html</id><title type="text">在ASP.NET中把数据POST到其他页面</title><summary type="text">先来建两个测试页面：test1.aspx和test2.aspx，内容如下：test1.aspx 页面：&lt;%@Pagelanguage="c#"Codebehind="Test1.aspx.cs"AutoEventWireup="false"Inherits="Ctrls.Test1"%&gt;&lt;!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitio...</summary><published>2004-11-08T03:23:00Z</published><updated>2004-11-08T03:23:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2004/11/08/61408.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2004/11/08/61408.html"/><content type="text">先来建两个测试页面：test1.aspx和test2.aspx，内容如下：test1.aspx 页面：&lt;%@Pagelanguage="c#"Codebehind="Test1.aspx.cs"AutoEventWireup="false"Inherits="Ctrls.Test1"%&gt;&lt;!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitio...</content></entry></feed>
