<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>歌特中国 &#187; .Net学习</title>
	<atom:link href="http://www.cngothic.com/category/net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cngothic.com</link>
	<description>歌特金属,配置iis+php+mysq,关注学习(Sql,Net,Web2.0,Javacript,Seo,Cms)</description>
	<lastBuildDate>Sat, 27 Jun 2009 09:21:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Net之旅:XmlDocument对象</title>
		<link>http://www.cngothic.com/20090124/net-xmldocument.html</link>
		<comments>http://www.cngothic.com/20090124/net-xmldocument.html#comments</comments>
		<pubDate>Sat, 24 Jan 2009 02:37:02 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[GetElementsByTagName()]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[XmlDocument对象]]></category>
		<category><![CDATA[xml节点]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=292</guid>
		<description><![CDATA[net之旅:XmlDocument对象
工作中遇到操作xml节点。对其节点值加1.后考虑到XmlDocument对象
使用XmlDocument类前必先引用两个命名空间：
using System.Xml;
using System.IO;
操作节点值代码如下：
XmlDocument xmlDoc =... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20090124/net-xmldocument.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:Parameter 对象</title>
		<link>http://www.cngothic.com/20090112/net-parameter.html</link>
		<comments>http://www.cngothic.com/20090112/net-parameter.html#comments</comments>
		<pubDate>Mon, 12 Jan 2009 12:08:58 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[Parameter 对象]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=288</guid>
		<description><![CDATA[Net之旅:Parameter 对象
Parameter 对象代表与基于参数化查询或存储过程的 Command 对象相关联的参数或自变量.在参数化查询时。使用Parameter对象还有利于防止注入。
Parameter 对象属性与方法：
Name 属... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20090112/net-parameter.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:FileUpload控件IIS7上传限制设定方法</title>
		<link>http://www.cngothic.com/20081212/net-fileupload2.html</link>
		<comments>http://www.cngothic.com/20081212/net-fileupload2.html#comments</comments>
		<pubDate>Fri, 12 Dec 2008 13:35:27 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[ApplicationHost.config]]></category>
		<category><![CDATA[FileUpload控件]]></category>
		<category><![CDATA[httpRuntime]]></category>
		<category><![CDATA[IIS7上传限制]]></category>
		<category><![CDATA[maxRequestLength]]></category>
		<category><![CDATA[requestlimits]]></category>
		<category><![CDATA[Web.config]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=281</guid>
		<description><![CDATA[Net之旅:FileUpload控件上传限制设定方法
昨天测试FileUpload控件．依托于IIS7上传大体积附件时失败．只要超过30M就不行了．但我在web.config中明明设置了
&#60;httpRuntime maxRequestLength=&#34;2097151&#34; execut... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20081212/net-fileupload2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:引用母模板控件属性-MasterType指令-FindControl()方法</title>
		<link>http://www.cngothic.com/20081130/net-mastertype-findcontrol.html</link>
		<comments>http://www.cngothic.com/20081130/net-mastertype-findcontrol.html#comments</comments>
		<pubDate>Sun, 30 Nov 2008 15:12:34 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[FindControl()]]></category>
		<category><![CDATA[MasterType指令]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[母模板]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=276</guid>
		<description><![CDATA[Net之旅:引用母模板控件属性-MasterType指令-FindControl方法
内容页如何获取母模板控件的属性.似乎不易做到.总结下两种方法.
1:MasterType指令
2:FindControl方法
举例说明:
MasterPage.master(母模板), Default.as... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20081130/net-mastertype-findcontrol.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:Cookies 对象</title>
		<link>http://www.cngothic.com/20081121/net-cookeis.html</link>
		<comments>http://www.cngothic.com/20081121/net-cookeis.html#comments</comments>
		<pubDate>Fri, 21 Nov 2008 13:42:31 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[Cookies]]></category>
		<category><![CDATA[HttpCookie]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[对象]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=269</guid>
		<description><![CDATA[Net之旅:cookeis 对象
cookeis(小甜饼)在用户登录时经常用到.典型的像论坛.cookies的项与值保护在客户端.客户端用户在浏览论坛时查找并判断相应域的cookies是否有效.然后能过此cookies来验证用户的合... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20081121/net-cookeis.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:Page.IsPostBack 属性</title>
		<link>http://www.cngothic.com/20081119/net-page-ispostback.html</link>
		<comments>http://www.cngothic.com/20081119/net-page-ispostback.html#comments</comments>
		<pubDate>Wed, 19 Nov 2008 02:16:41 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[Page.IsPostBack]]></category>
		<category><![CDATA[属性]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=266</guid>
		<description><![CDATA[Net之旅:IsPostBack 属性
Page.IsPostBack 是用来检查目前网页是否为第一次加载，当使用者第一次浏览这个网页时Page.IsPostBack 会传回False，不是第一次浏览这个网页时就传回True；所以当我们在Page_Load ... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20081119/net-page-ispostback.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:FileUpload控件</title>
		<link>http://www.cngothic.com/20080521/aspnet-fileupload.html</link>
		<comments>http://www.cngothic.com/20080521/aspnet-fileupload.html#comments</comments>
		<pubDate>Wed, 21 May 2008 11:19:19 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[FileUpload]]></category>
		<category><![CDATA[FileUpload控件]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[net教程]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=139</guid>
		<description><![CDATA[Net之旅:FileUpload控件-FileUpload控件相比其它上传组件与无组件上传类在效率上都略胜一筹。FileUpload的最大上传限制为200M。
1：FileUpload控件的页面代码表现形式
描述：1个FileUpload控件 与 1个Button... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20080521/aspnet-fileupload.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:BulletedList控件</title>
		<link>http://www.cngothic.com/20080520/aspnet-bulletedlist.html</link>
		<comments>http://www.cngothic.com/20080520/aspnet-bulletedlist.html#comments</comments>
		<pubDate>Tue, 20 May 2008 14:36:18 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[BulletedList]]></category>
		<category><![CDATA[BulletedList控件]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[net教程]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=138</guid>
		<description><![CDATA[Net之旅:BulletedList控件
对于一些各种列表，甚至普通文字新闻列表的表现。都可以用BulletedList控件控件来实现.
1:BulletedList控件列表项目：
1：可以建立数据源从中显示出来.
2：编辑项－自主添加... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20080520/aspnet-bulletedlist.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:数据绑定控件之绑定列表与数组</title>
		<link>http://www.cngothic.com/20080515/aspnet-listbox.html</link>
		<comments>http://www.cngothic.com/20080515/aspnet-listbox.html#comments</comments>
		<pubDate>Thu, 15 May 2008 06:34:51 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[net教程]]></category>
		<category><![CDATA[数据绑定控件]]></category>
		<category><![CDATA[绑定列表]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=134</guid>
		<description><![CDATA[Net之旅:数据绑定控件之绑定列表与数组
简述：
数据绑定列表向用户展现了一组数据库中的数据，并且用户能够从该列表中选择。ASP.NET提供4种类型的列表让用户选择：dropdownlist,listbox,radiobuttonl... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20080515/aspnet-listbox.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:Global.asax的用处-声明全局事件</title>
		<link>http://www.cngothic.com/20080514/aspnet-global-asax-application.html</link>
		<comments>http://www.cngothic.com/20080514/aspnet-global-asax-application.html#comments</comments>
		<pubDate>Wed, 14 May 2008 08:53:00 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[application_end]]></category>
		<category><![CDATA[aspplication_start]]></category>
		<category><![CDATA[Global.asax]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[session_end]]></category>
		<category><![CDATA[session_start]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=133</guid>
		<description><![CDATA[Net之旅:Global.asax的用处-声明全局事件
web.config 保存值, global.asax 保存代码。global.asax像webconfig一样位于站点根目录下.global.asax中的代码在三种情况之一下执行。
第一种情况是整个应用程序启动... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20080514/aspnet-global-asax-application.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:Web.config保存整个站点设置</title>
		<link>http://www.cngothic.com/20080512/aspnet-web-config.html</link>
		<comments>http://www.cngothic.com/20080512/aspnet-web-config.html#comments</comments>
		<pubDate>Mon, 12 May 2008 12:05:04 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[net教程]]></category>
		<category><![CDATA[Web.config]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=132</guid>
		<description><![CDATA[Net之旅:Web.config保存整个站点设置
web.config存储应用到整个站点的值.组织为XML文件并位于根目录下,结点主要保存三个方面的信息:
1:在开发和部署环境下应用程序功能可用性的设置.
2:保存当从数... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20080512/aspnet-web-config.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Net之旅:密码最短长度为7,其中必须包含以下非字母数字字符: 1.</title>
		<link>http://www.cngothic.com/20080512/aspnet-password7-number1.html</link>
		<comments>http://www.cngothic.com/20080512/aspnet-password7-number1.html#comments</comments>
		<pubDate>Mon, 12 May 2008 11:45:12 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[net教程]]></category>
		<category><![CDATA[密码]]></category>
		<category><![CDATA[非字母数字]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=131</guid>
		<description><![CDATA[密码最短长度为7,其中必须包含以下非字母数字字符: 1.
在学习ASP.NET 2.0 网站管理工具-创建用户填写密码时.总是提示:密码最短长度为7,其中必须包含以下非字母数字字符: 1.Cngothic抓狂了试了好... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20080512/aspnet-password7-number1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:Master页面 和 Content页面</title>
		<link>http://www.cngothic.com/20080511/aspnet-master-content.html</link>
		<comments>http://www.cngothic.com/20080511/aspnet-master-content.html#comments</comments>
		<pubDate>Sun, 11 May 2008 02:11:47 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[Content页面]]></category>
		<category><![CDATA[Master页面]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[net教程]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=130</guid>
		<description><![CDATA[Net之旅:Master页面 和 Content页面
说到 Master 和 Content 页面不知有多少人用过CMS(网站管理系统)。
其Cms工作表现形式：在首页模板中插入标签 {$歌特中国}; {$歌特中国} 标签内容为&#8221;歌特中国Web... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20080511/aspnet-master-content.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net之旅:常规Web站点任务的简单解决方案</title>
		<link>http://www.cngothic.com/20080509/aspnet-1.html</link>
		<comments>http://www.cngothic.com/20080509/aspnet-1.html#comments</comments>
		<pubDate>Fri, 09 May 2008 12:53:29 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[Net之旅]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/?p=129</guid>
		<description><![CDATA[Net之旅:常规Web站点任务的简单解决方案
Cngothic从书上整理了些资料.(转载请注明出处)
1：一致性和个性化
Web设计者往往想要获得两个互相矛盾的设计特性。一方面他们想让整个站点有一个一致... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20080509/aspnet-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>visual studio 2005代码视图中插入光标切换方法</title>
		<link>http://www.cngothic.com/20080307/visual-studio2005-insert.html</link>
		<comments>http://www.cngothic.com/20080307/visual-studio2005-insert.html#comments</comments>
		<pubDate>Fri, 07 Mar 2008 12:13:19 +0000</pubDate>
		<dc:creator>cngothic</dc:creator>
				<category><![CDATA[.Net学习]]></category>
		<category><![CDATA[insert]]></category>
		<category><![CDATA[visual studio 2005]]></category>
		<category><![CDATA[代码视图]]></category>

		<guid isPermaLink="false">http://www.cngothic.com/20080307/visual-studio2005-insert.html</guid>
		<description><![CDATA[visual studio 2005代码视图中插入光标切换方法
使用visual studio的时候有时不知按了哪个键。插入的鼠标光标显示的为块状。
导致无法在两字母间插入光标。中有选择后面的一个字符。打字时也将... ]]></description>
		<wfw:commentRss>http://www.cngothic.com/20080307/visual-studio2005-insert.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
