<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/wangrumeng" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/wangrumeng" type="application/rss+xml"></fs:self_link><lastBuildDate>Wed, 24 Nov 2010 06:03:00 GMT</lastBuildDate><title>逐梦的专栏</title><description>心情写照，技术交流</description><link>http://blog.csdn.net/blogrss.aspx?username=wangrumeng</link><item><title>VS2008发布网站生成一个固定DLL，之后出现合并程序集时出错的解决办法</title><link>http://blog.csdn.net/wangrumeng/archive/2010/11/24/6032034.aspx</link><description>在使用VS2005和VS2008来开发网站，在发布网站时不会像VS2003一样生成规则的DLL文件，而生成的DLL文件名含有随机数不固定且不能一个项目生成一个DLL文件，每次更新的时候的全部更新才行。为了做到像vs2003一样，微软发布了WebDeployment Project 插件可以解决此问题Web Deployment Projects 各版本下载&lt;br /&gt;web deployment对统一编译网页程序体验非常好。可以把众多dll合成一个。下面是个版本下载地址：&lt;br /&gt;&lt;br /&gt;vs2005版的：http://download.microsoft.com/download/c/c/b/ccb4877f-55f7-4478-8f16-e41886607a0e/WebDeploymentSetup.msi&lt;br /&gt;&lt;br /&gt;vs2008版的：http://www.microsoft.com/downloads/details.aspx?familyId=0AA30AE8-C73B-4BDD-BB1B-FE697256C459&amp;displaylang=en&lt;br /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/440274553/wangrumeng/csdn.net/s.gif?r=http://blog.csdn.net/wangrumeng/archive/2010/11/24/6032034.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/wangrumeng/440274553/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/wangrumeng/440274553/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 24 Nov 2010 14:03:00 +0800</pubDate><author>逐梦</author><guid isPermaLink="false">http://blog.csdn.net/wangrumeng/archive/2010/11/24/6032034.aspx</guid><dc:creator>逐梦</dc:creator><fs:srclink>http://blog.csdn.net/wangrumeng/archive/2010/11/24/6032034.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wangrumeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wangrumeng/~1088337/440274553/1088336</fs:itemid></item><item><title>遍历页面上所有checkbox的两种方法</title><link>http://blog.csdn.net/wangrumeng/archive/2010/01/06/5140208.aspx</link><description>&lt;br /&gt;后台方法：&lt;br /&gt;void   CheckAll(Control   c,   bool   bChecked)   
  {   
      if   (c   is   CheckBox)   
          ((CheckBox)c).Checked   =   bChecked;   
    
      foreach   (Control   c2   in   c.Controls)   
            CheckAll(c2,   bChecked);   
  }   

&lt;br /&gt;前台方法：&lt;br /&gt;function   CheckAll(bChecked)   
  {   
      var   inputs   =   document.all.tags(&quot;INPUT&quot;);   
      for   (var   i=0;   i&lt;img src=&quot;http://www1.feedsky.com/t1/440274554/wangrumeng/csdn.net/s.gif?r=http://blog.csdn.net/wangrumeng/archive/2010/01/06/5140208.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/wangrumeng/440274554/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/wangrumeng/440274554/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 06 Jan 2010 09:53:00 +0800</pubDate><author>逐梦</author><guid isPermaLink="false">http://blog.csdn.net/wangrumeng/archive/2010/01/06/5140208.aspx</guid><dc:creator>逐梦</dc:creator><fs:srclink>http://blog.csdn.net/wangrumeng/archive/2010/01/06/5140208.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wangrumeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wangrumeng/~1088337/440274554/1088336</fs:itemid></item><item><title>游标使用示例</title><link>http://blog.csdn.net/wangrumeng/archive/2010/01/06/5140195.aspx</link><description>&lt;br /&gt;declare @id nvarchar(20)  --定义变量来保存ID号&lt;br /&gt;declare @A float                  --定义变量来保存值&lt;br /&gt;declare mycursor cursor for select * from tb_c   --为所获得的数据集指定游标&lt;br /&gt;open mycursor                   --打开游标&lt;br /&gt;fetch next from mycursor  into @id,@A   --开始抓第一条数据&lt;br /&gt;while(@@fetch_status=0)     --如果数据集里一直有数据&lt;br /&gt;begin&lt;br /&gt; select tb_b.name,(tb_b.gz + @A) from tb_b where tb_b.id = @id   --开始做想做的事（什么更新呀，删除呀）&lt;br /&gt;        fetch next from mycursor into @id,@A     --跳到下一条数据&lt;br /&gt;end&lt;br /&gt;close myc&lt;img src=&quot;http://www1.feedsky.com/t1/440274555/wangrumeng/csdn.net/s.gif?r=http://blog.csdn.net/wangrumeng/archive/2010/01/06/5140195.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/wangrumeng/440274555/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/wangrumeng/440274555/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 06 Jan 2010 09:52:00 +0800</pubDate><author>逐梦</author><guid isPermaLink="false">http://blog.csdn.net/wangrumeng/archive/2010/01/06/5140195.aspx</guid><dc:creator>逐梦</dc:creator><fs:srclink>http://blog.csdn.net/wangrumeng/archive/2010/01/06/5140195.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wangrumeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wangrumeng/~1088337/440274555/1088336</fs:itemid></item><item><title>DataGrid翻页后删除记录出错的解决方案[转帖]</title><link>http://blog.csdn.net/wangrumeng/archive/2009/08/24/4477156.aspx</link><description>&lt;br /&gt;当DataGrid翻到最后一页后，如果当前页的数据只有一条，那么删除这条记录就会出现“异常详细信息: System.Web.HttpException: 无效的 CurrentPageIndex 值。它必须大于等于 0 且小于 PageCount。”这样的错误，出现这个错误的原因是当最后一页上的这条记录被删除并重新绑定数据之后，DataGrid的总页数减少了一页，而它的CurrentPageIndex属性值却仍然是删除记录前最后一页的页索引值，这个值超出了它的总页数。一些网友解决这个问题的方法是：在删除记录之后立即将DataGrid的CurrentPageIndex设为0，即跳回第一页，这个方法虽然可以避免再发生这样的错误，然而却很不灵活，因为如果用户要删除最后一页上的两条记录，那么在删除了其中一条后，不得不重新点击分页按钮进入最后一页来删除第二条，而且很多时候这种方法会给用户带来困扰，因为很容易把跳转到的第一页的数据当成是正执行删除命令的最后一页的数据，其实这个问题有更好的解决办法，如果我们用的是DataGrid的内建的删除功能，即一次只能删除一条记录的话，那么在它的De&lt;img src=&quot;http://www1.feedsky.com/t1/440274556/wangrumeng/csdn.net/s.gif?r=http://blog.csdn.net/wangrumeng/archive/2009/08/24/4477156.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/wangrumeng/440274556/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/wangrumeng/440274556/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 24 Aug 2009 10:19:00 +0800</pubDate><author>逐梦</author><guid isPermaLink="false">http://blog.csdn.net/wangrumeng/archive/2009/08/24/4477156.aspx</guid><dc:creator>逐梦</dc:creator><fs:srclink>http://blog.csdn.net/wangrumeng/archive/2009/08/24/4477156.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wangrumeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wangrumeng/~1088337/440274556/1088336</fs:itemid></item><item><title>GridView 72般绝技-3</title><link>http://blog.csdn.net/wangrumeng/archive/2008/05/26/2482494.aspx</link><description>GridView 72般绝技-3&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/wangrumeng/440274557/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/wangrumeng/440274557/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 26 May 2008 14:25:00 +0800</pubDate><author>逐梦</author><guid isPermaLink="false">http://blog.csdn.net/wangrumeng/archive/2008/05/26/2482494.aspx</guid><dc:creator>逐梦</dc:creator><fs:srclink>http://blog.csdn.net/wangrumeng/archive/2008/05/26/2482494.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wangrumeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wangrumeng/~1088337/440274557/1088336</fs:itemid></item><item><title>GridView 72般绝技-2</title><link>http://blog.csdn.net/wangrumeng/archive/2008/05/26/2482488.aspx</link><description>GridView 72般绝技-2&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/wangrumeng/440274558/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/wangrumeng/440274558/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 26 May 2008 14:24:00 +0800</pubDate><author>逐梦</author><guid isPermaLink="false">http://blog.csdn.net/wangrumeng/archive/2008/05/26/2482488.aspx</guid><dc:creator>逐梦</dc:creator><fs:srclink>http://blog.csdn.net/wangrumeng/archive/2008/05/26/2482488.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wangrumeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wangrumeng/~1088337/440274558/1088336</fs:itemid></item><item><title>GridView 72般绝技-1</title><link>http://blog.csdn.net/wangrumeng/archive/2008/05/26/2482481.aspx</link><description>GridView 72般绝技-1&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/wangrumeng/440274559/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/wangrumeng/440274559/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 26 May 2008 14:23:00 +0800</pubDate><author>逐梦</author><guid isPermaLink="false">http://blog.csdn.net/wangrumeng/archive/2008/05/26/2482481.aspx</guid><dc:creator>逐梦</dc:creator><fs:srclink>http://blog.csdn.net/wangrumeng/archive/2008/05/26/2482481.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wangrumeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wangrumeng/~1088337/440274559/1088336</fs:itemid></item><item><title>DataGrid导出到Excel(带分页)</title><link>http://blog.csdn.net/wangrumeng/archive/2008/04/07/2257769.aspx</link><description>DataGrid导出到Excel(带分页)&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/wangrumeng/440274560/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/wangrumeng/440274560/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 07 Apr 2008 18:05:00 +0800</pubDate><author>逐梦</author><guid isPermaLink="false">http://blog.csdn.net/wangrumeng/archive/2008/04/07/2257769.aspx</guid><dc:creator>逐梦</dc:creator><fs:srclink>http://blog.csdn.net/wangrumeng/archive/2008/04/07/2257769.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wangrumeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wangrumeng/~1088337/440274560/1088336</fs:itemid></item><item><title>给TreeView设置背景图片-------即将TreeView的背景设为透明的方法</title><link>http://blog.csdn.net/wangrumeng/archive/2008/03/05/2149775.aspx</link><description>给TreeView设置背景图片-------即将TreeView的背景设为透明的方法&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/wangrumeng/440274561/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/wangrumeng/440274561/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 05 Mar 2008 13:15:00 +0800</pubDate><author>逐梦</author><guid isPermaLink="false">http://blog.csdn.net/wangrumeng/archive/2008/03/05/2149775.aspx</guid><dc:creator>逐梦</dc:creator><fs:srclink>http://blog.csdn.net/wangrumeng/archive/2008/03/05/2149775.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wangrumeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wangrumeng/~1088337/440274561/1088336</fs:itemid></item><item><title>带分页的DataGrid导出到Excel</title><link>http://blog.csdn.net/wangrumeng/archive/2008/03/04/2145303.aspx</link><description>带分页的DataGrid导出到Excel&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/wangrumeng/440274562/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/wangrumeng/440274562/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 04 Mar 2008 09:01:00 +0800</pubDate><author>逐梦</author><guid isPermaLink="false">http://blog.csdn.net/wangrumeng/archive/2008/03/04/2145303.aspx</guid><dc:creator>逐梦</dc:creator><fs:srclink>http://blog.csdn.net/wangrumeng/archive/2008/03/04/2145303.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wangrumeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wangrumeng/~1088337/440274562/1088336</fs:itemid></item></channel></rss>
