<?xml version="1.0" encoding="utf-8"?>
			<?xml-stylesheet type="text/css" href="http://bbs.cnnas.com/www/css/rss.css"?>
			<rss version="2.0">
			  <channel>
			    <title>ぷ枯树昏鸦</title>
			    <link>http://bbs.cnnas.com/www/index.php/uid-23</link>
			    <description>不想翻阅你谙熟的内容♀揭起你不堪的回忆♀我只让风带去我的叮咛……放下比端着省力♀过去没现在重要
    活着就要快乐……</description>
			    <copyright>Copyright(C) ぷ枯树昏鸦</copyright>
			    <generator>SupeSite/X-Space</generator>
			    <lastBuildDate>Sat, 10 Jan 2009 11:05:16 GMT</lastBuildDate><item>
								<title>Excel写入,并解决Excel的进程无法结束的问题</title>
								<link>http://bbs.cnnas.com/www/index.php/uid-23-action-viewspace-itemid-1621</link>
								<description><![CDATA[using MSExcel=Microsoft.Office.Interop.Excel;<BR><BR>try<BR>{<BR>&nbsp;&nbsp;&nbsp;&nbsp;SaveFileDialog fm = new SaveFileDialog();<BR>&nbsp;&nbsp;&nbsp;&nbsp;fm.DefaultExt = "xls";<BR>&nbsp;&nbsp;&nbsp;&nbsp;fm.Filter = "Excel文件|*.xls";<BR>&nbsp;&nbsp;&...]]></description>
								<category>blog</category>
								<author>枯树昏鸦</author>
								<pubDate>Tue, 26 Aug 2008 12:40:30 GMT</pubDate>
							</item>
							<item>
								<title>SQLServer2000同步复制技术实现步骤及示例</title>
								<link>http://bbs.cnnas.com/www/index.php/uid-23-action-viewspace-itemid-1406</link>
								<description><![CDATA[<P>SQLServer2000同步复制技术实现步骤 <BR><BR>一、 预备工作 <BR>1.发布服务器,订阅服务器都创建一个同名的windows用户,并设置相同的密码,做为发布快照文件夹的有效访问用户 <BR>--管理工具 <BR>--计算机管理 <BR>--用户和组 <BR>--右键用户 <BR>--新建用户 <BR>--建立一个...]]></description>
								<category>blog</category>
								<author>枯树昏鸦</author>
								<pubDate>Mon, 23 Jun 2008 15:21:36 GMT</pubDate>
							</item>
							<item>
								<title>SQL SERVER 2005 同步复制技术</title>
								<link>http://bbs.cnnas.com/www/index.php/uid-23-action-viewspace-itemid-1405</link>
								<description><![CDATA[SQL SERVER 2005 同步复制技术 <BR><BR>以下实现复制步骤（以快照复制为例） <BR><BR>运行平台SQL SERVER 2005 <BR><BR>一、准备工作： <BR><BR>1．建立一个 WINDOWS 用户，设置为管理员权限，并设置密码，作为发布快照文件的有效访问用户。 <BR><BR>2．在SQL SERVER下实现发布服务器和订阅服...]]></description>
								<category>blog</category>
								<author>枯树昏鸦</author>
								<pubDate>Mon, 23 Jun 2008 15:17:54 GMT</pubDate>
							</item>
							<item>
								<title>5.12-6.12</title>
								<link>http://bbs.cnnas.com/www/index.php/uid-23-action-viewspace-itemid-1344</link>
								<description><![CDATA[<P><A href="http://bbs.cnnas.com/www/batch.download.php?aid=845" target=_blank></A>我大概是有了问题，看不惯别人讨论地震之外的事，看不惯别人看除了地震之外的电视，知道这是我的问题，但不知道为什么这样。这一个月以来我经常会很激动，原因来自关于汶川地震的任何方面的东西。...]]></description>
								<category>blog</category>
								<author>枯树昏鸦</author>
								<pubDate>Thu, 12 Jun 2008 01:51:12 GMT</pubDate>
							</item>
							<item>
								<title>有感--我的志愿者之行</title>
								<link>http://bbs.cnnas.com/www/index.php/uid-23-action-viewspace-itemid-1208</link>
								<description><![CDATA[一切就像做了场梦，头一天还是母亲节，但这个母亲节可能是很多母亲度过的最后一个母亲节，当时的一切真是太突然…… <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5月12日，听同事说今天是护士节，干吗是护士节呢。开始摇第一次的时候我猛的反应过来，“地震”，因为我在老家经历过很多...]]></description>
								<category>blog</category>
								<author>枯树昏鸦</author>
								<pubDate>Tue, 20 May 2008 07:44:32 GMT</pubDate>
							</item>
							<item>
								<title>.NET反射、委托技术与设计模式</title>
								<link>http://bbs.cnnas.com/www/index.php/uid-23-action-viewspace-itemid-952</link>
								<description><![CDATA[<P class=content><STRONG>1 反射技术与设计模式 </STRONG><BR><BR>　反射（Reflection）是.NET中的重要机制，通过放射，可以在运行时获得.NET中每一个类型（包括类、结构、委托、接口和枚举等）的成员，包括方法、属性、事件，以及构造函数等。还可以获得每个成员的名称、限定符和参数等。有...]]></description>
								<category>blog</category>
								<author>枯树昏鸦</author>
								<pubDate>Tue, 22 Apr 2008 16:53:09 GMT</pubDate>
							</item>
							<item>
								<title>c#中获取程序当前路径的集中方法(全)</title>
								<link>http://bbs.cnnas.com/www/index.php/uid-23-action-viewspace-itemid-951</link>
								<description><![CDATA[<P>string&nbsp;str1&nbsp;=Process.GetCurrentProcess().MainModule.FileName;//可获得当前执行的exe的文件名。&nbsp;&nbsp;<BR>string&nbsp;str2=Environment.CurrentDirectory;//获取和设置当前目录（即该进程从中启动的目录）的完全限定路径。<BR>//备注&nbsp;按照定义，如果该...]]></description>
								<category>blog</category>
								<author>枯树昏鸦</author>
								<pubDate>Tue, 22 Apr 2008 16:51:50 GMT</pubDate>
							</item>
							<item>
								<title>分享一段数据库中查询所有用户表字段信息的代码</title>
								<link>http://bbs.cnnas.com/www/index.php/uid-23-action-viewspace-itemid-949</link>
								<description><![CDATA[SELECT <BR>&nbsp;d.name N'表名',<BR>&nbsp;a.colorder N'字段序号',<BR>&nbsp;a.name N'字段名',<BR>&nbsp;(case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then '√'else '' end) N'标识',<BR>&nbsp;(case when (SELECT count(*)<BR>&nbsp;FROM sysobjects<BR>&n...]]></description>
								<category>blog</category>
								<author>枯树昏鸦</author>
								<pubDate>Sun, 20 Apr 2008 17:53:44 GMT</pubDate>
							</item>
							<item>
								<title>签名</title>
								<link>http://bbs.cnnas.com/www/index.php/uid-23-action-viewspace-itemid-936</link>
								<description><![CDATA[&nbsp;1.我以为小鸟飞不过沧海，是以为小鸟没有飞过沧海的勇气，十年以后我才发现，不是小鸟飞不过去，而是沧海的那一头，早已没有了等待…… 　 <BR><BR>2.你走的那天，我决定不掉泪，迎着风撑着眼帘用力不眨眼…… 　　 <BR><BR>3.多谢你的绝情，让我学会死心…… <BR>　 <BR>4.带著一根烟....]]></description>
								<category>blog</category>
								<author>枯树昏鸦</author>
								<pubDate>Tue, 15 Apr 2008 16:48:40 GMT</pubDate>
							</item>
							<item>
								<title>中国景色最美的地方</title>
								<link>http://bbs.cnnas.com/www/index.php/uid-23-action-viewspace-itemid-926</link>
								<description><![CDATA[<DIV class=lh3 id=veryContent style="OVERFLOW: hidden; WIDTH: 100%">
<TABLE class=contentTable id=blogContentTable cellSpacing=0 cellPadding=0>
<TBODY>
<TR>
<TD style="FONT-SIZE: 12px; WORD-WRAP: break-word" vAlign=top>
<DIV id=blogContainer><IMG id=paper...]]></description>
								<category>blog</category>
								<author>枯树昏鸦</author>
								<pubDate>Mon, 07 Apr 2008 09:10:38 GMT</pubDate>
							</item>
							
		</channel>
	</rss>