<?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:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/haoliumeihua" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/haoliumeihua" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 24 Apr 2009 12:57:00 GMT</lastBuildDate><title>haoliumeihua的专栏</title><link>http://blog.csdn.net/haoliumeihua/</link><item><title>关于Web打印的一些讨论</title><link>http://blog.csdn.net/haoliumeihua/archive/2009/04/24/4106581.aspx</link><wfw:comment>http://blog.csdn.net/haoliumeihua/comments/4106581.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/haoliumeihua/comments/commentRss/4106581.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4106581</trackback:ping><description>（一）几种web打印方案的比较打印通常是系统的辅助部分，但是又必须解决，否则项目完成不了。下面来分析分析目前的几种常见的web打印方案。一、 浏览器的菜单打印功能 这是最简单的，只需点击页面上的打印菜单，但是也是问题最多的，基本上是不能满足用户需要。比如：不能精确分页，有出现打出半行字的风险；改变纸型后打印出的格式和页面显示的格式相差太大；页眉页脚也需要从菜单中去设置，等等等等。这种方案最大的优势就是不需要做任何代码，点击打印就可以了。二、 window.Print()这实际上，是浏览器打印功能菜单的一种程序调用。与点击打印功能菜单一样，不能精确分页，不能设置纸型，套打的问题更加无从谈起，只不过，可以让用户不用去点菜单，直接点击网页中的一个按钮，或一个链接里面调用罢了。 需要指出的是这种方法提供一个打印前和打印后的事件onbeforeprint、onafterprint。可以在打印前的时候重新编辑一些格式，专门送去打印，打印后又处理回来。function &lt;img src =&quot;http://blog.csdn.net/haoliumeihua/aggbug/4106581.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 24 Apr 2009 20:57:00 +0800</pubDate><author>刘美华</author><comments>http://blog.csdn.net/haoliumeihua/archive/2009/04/24/4106581.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/haoliumeihua/archive/2009/04/24/4106581.aspx</guid><dc:creator>刘美华</dc:creator><fs:srclink>http://blog.csdn.net/haoliumeihua/archive/2009/04/24/4106581.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haoliumeihua/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haoliumeihua/~7366314/207380307/5475830</fs:itemid></item><item><title>SQL函数大全（两篇）</title><link>http://blog.csdn.net/haoliumeihua/archive/2009/04/23/4102324.aspx</link><wfw:comment>http://blog.csdn.net/haoliumeihua/comments/4102324.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/haoliumeihua/comments/commentRss/4102324.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4102324</trackback:ping><description>&lt;br /&gt;--聚合函数&lt;br /&gt;use pubs&lt;br /&gt;go&lt;br /&gt;selectavg(distinct price)  --算平均数&lt;br /&gt;from titles&lt;br /&gt;where type='business'&lt;br /&gt;go&lt;br /&gt;use pubs&lt;br /&gt;go&lt;br /&gt;selectmax(ytd_sales)  --最大数&lt;br /&gt;from titles&lt;br /&gt;go&lt;br /&gt;&lt;br /&gt;use pubs&lt;br /&gt;go&lt;br /&gt;selectmin(ytd_sales) --最小数&lt;br /&gt;from titles&lt;br /&gt;go&lt;br /&gt;&lt;br /&gt;use pubs&lt;br /&gt;go&lt;br /&gt;select type,sum(price),sum(advance)  --求和&lt;br /&gt;from titles&lt;br /&gt;groupby type&lt;br /&gt;orderby type&lt;br /&gt;go&lt;br /&gt;&lt;br /&gt;use pubs&lt;br /&gt;go&lt;br /&gt;selectcount(distinct city)  --求个数&lt;br /&gt;f&lt;img src =&quot;http://blog.csdn.net/haoliumeihua/aggbug/4102324.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 23 Apr 2009 17:39:00 +0800</pubDate><author>刘美华</author><comments>http://blog.csdn.net/haoliumeihua/archive/2009/04/23/4102324.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/haoliumeihua/archive/2009/04/23/4102324.aspx</guid><dc:creator>刘美华</dc:creator><fs:srclink>http://blog.csdn.net/haoliumeihua/archive/2009/04/23/4102324.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haoliumeihua/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haoliumeihua/~7366314/207380311/5475830</fs:itemid></item><item><title>您试图在此 Web 服务器上访问的 Web 应用程序当前不可用</title><link>http://blog.csdn.net/haoliumeihua/archive/2009/04/23/4102118.aspx</link><wfw:comment>http://blog.csdn.net/haoliumeihua/comments/4102118.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/haoliumeihua/comments/commentRss/4102118.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4102118</trackback:ping><description>您试图在此 Web 服务器上访问的 Web 应用程序当前不可用。请点击 Web 浏览器中的“刷新”按钮重试您的请求。管理员注意事项: 详述此特定请求失败原因的错误信息可在 Web 服务器的系统事件日志中找到。请检查此日志项以查明导致该错误发生的原因。------------------------------------------------------------------------------------------------情况是这样的，我机器装有.NETFramework1.1和2.0，首先是我打开的2.0程序出现这个错误，发现这个错误以后，我打1.1的程序也不能运行。我选择了最传统的办法，重新启动我的系统。结果问题还是那样没有什么改变，只好重装我的IIS了，把1.1和2.0两个框架都配置好，结果是2.0的程序可以运行，1.1的程序还是那个错误。没有办法，上网看看有没有什么相关的资料，看到了这篇文章：http://www.cnblogs.com/cowbird/archive/2005/02/16/&lt;img src =&quot;http://blog.csdn.net/haoliumeihua/aggbug/4102118.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 23 Apr 2009 16:39:00 +0800</pubDate><author>刘美华</author><comments>http://blog.csdn.net/haoliumeihua/archive/2009/04/23/4102118.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/haoliumeihua/archive/2009/04/23/4102118.aspx</guid><dc:creator>刘美华</dc:creator><fs:srclink>http://blog.csdn.net/haoliumeihua/archive/2009/04/23/4102118.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haoliumeihua/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haoliumeihua/~7366314/207380317/5475830</fs:itemid></item><item><title>gridview使用TemplateField中的LinkButton时如何在RowCommand事件中找到当前行index的方法</title><link>http://blog.csdn.net/haoliumeihua/archive/2009/04/22/4099796.aspx</link><wfw:comment>http://blog.csdn.net/haoliumeihua/comments/4099796.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/haoliumeihua/comments/commentRss/4099796.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4099796</trackback:ping><description>ASP.NET2.0中的GRIDVIEW控件在使用TemplateField中的LinkButton时如何在RowCommand事件中找到当前行index的方法 　　ASP.NET2.0中的GRIDVIEW控件真是非常奇怪，不知道MS是怎么考虑的，在GRIDVIEW里，行索引被放在了CommandArgument里面，而不是像DataGrid那样可以利用this.MyDataGrid.DataKeys[e.Item.ItemIndex].ToString()方便的取出主键值，同时我们注意到，如果使用默认的CommandField，　则可以在RowCommand中使用如下代码取出行号：protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e){//编辑按扭&lt;img src =&quot;http://blog.csdn.net/haoliumeihua/aggbug/4099796.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 22 Apr 2009 19:09:00 +0800</pubDate><author>刘美华</author><comments>http://blog.csdn.net/haoliumeihua/archive/2009/04/22/4099796.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/haoliumeihua/archive/2009/04/22/4099796.aspx</guid><dc:creator>刘美华</dc:creator><fs:srclink>http://blog.csdn.net/haoliumeihua/archive/2009/04/22/4099796.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haoliumeihua/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haoliumeihua/~7366314/207380319/5475830</fs:itemid></item><item><title>动态改变Asp.net页面标题方法整合</title><link>http://blog.csdn.net/haoliumeihua/archive/2009/04/19/4092091.aspx</link><wfw:comment>http://blog.csdn.net/haoliumeihua/comments/4092091.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/haoliumeihua/comments/commentRss/4092091.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4092091</trackback:ping><description>动态改变Asp.net页面标题方法整合 以下代码在 VS.NET 2005（Asp.Net ＋ C#）环境中测试通过；方法1：直接用脚本改变页面标题 protected void Page_Load(object sender, EventArgs e)...{//简单的这样写：//this.Response.Write(&quot;＜script language=javascript＞document.title='方法1：这是程序更改的标题！'＜/script＞&quot;); string page_title = &quot;方法1：这是程序更改的标题！&quot;; this.Response.Write(&quot;＜script language=javascript＞document.title='&quot; + page_title + &quot;'＜/script＞&quot;); }方法2：绑定变量改变页面标题//首先：在页面代码中定义public str&lt;img src =&quot;http://blog.csdn.net/haoliumeihua/aggbug/4092091.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 20 Apr 2009 00:09:00 +0800</pubDate><author>刘美华</author><comments>http://blog.csdn.net/haoliumeihua/archive/2009/04/19/4092091.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/haoliumeihua/archive/2009/04/19/4092091.aspx</guid><dc:creator>刘美华</dc:creator><fs:srclink>http://blog.csdn.net/haoliumeihua/archive/2009/04/19/4092091.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haoliumeihua/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haoliumeihua/~7366314/207380321/5475830</fs:itemid></item><item><title>关于window.open()打开新页面会弹出Object页面的几点说明</title><link>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089638.aspx</link><wfw:comment>http://blog.csdn.net/haoliumeihua/comments/4089638.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/haoliumeihua/comments/commentRss/4089638.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4089638</trackback:ping><description>关于window.open()打开新页面会弹出Object页面的几点说明&lt;img src =&quot;http://blog.csdn.net/haoliumeihua/aggbug/4089638.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 18 Apr 2009 21:40:00 +0800</pubDate><author>刘美华</author><comments>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089638.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089638.aspx</guid><dc:creator>刘美华</dc:creator><fs:srclink>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089638.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haoliumeihua/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haoliumeihua/~7366314/207380322/5475830</fs:itemid></item><item><title>linkbutton的样式居然可以和&amp;lt;a标签一样用a:hover</title><link>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089628.aspx</link><wfw:comment>http://blog.csdn.net/haoliumeihua/comments/4089628.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/haoliumeihua/comments/commentRss/4089628.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4089628</trackback:ping><description>linkbutton的样式可以和一样的调用如：-----------------------------------------------------------------#selectmod a{ color:Green ;    text-decoration :none; }#selectmod a:hover{ color:Red ;  text-decoration :underline;  background :#ffcccc; }------------------------------------------------------------------linkbutton样式#ScanWeb a{   color:Green ;    text-decoration :no&lt;img src =&quot;http://blog.csdn.net/haoliumeihua/aggbug/4089628.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 18 Apr 2009 21:33:00 +0800</pubDate><author>刘美华</author><comments>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089628.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089628.aspx</guid><dc:creator>刘美华</dc:creator><fs:srclink>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089628.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haoliumeihua/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haoliumeihua/~7366314/207380323/5475830</fs:itemid></item><item><title>关于图片的绑定</title><link>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089604.aspx</link><wfw:comment>http://blog.csdn.net/haoliumeihua/comments/4089604.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/haoliumeihua/comments/commentRss/4089604.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4089604</trackback:ping><description>&lt;br /&gt;图片的绑定：&lt;br /&gt;（1）：&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;%&gt;' /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;（2）：&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/haoliumeihua/aggbug/4089604.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 18 Apr 2009 21:20:00 +0800</pubDate><author>刘美华</author><comments>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089604.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089604.aspx</guid><dc:creator>刘美华</dc:creator><fs:srclink>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089604.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haoliumeihua/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haoliumeihua/~7366314/207380324/5475830</fs:itemid></item><item><title>ASP.NET:C#中时间格式的转换</title><link>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089413.aspx</link><wfw:comment>http://blog.csdn.net/haoliumeihua/comments/4089413.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/haoliumeihua/comments/commentRss/4089413.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4089413</trackback:ping><description>&lt;br /&gt;有时候我们要对时间进行转换,达到不同的显示效果&lt;br /&gt;默认格式为:2005-6-6 14:33:34 &lt;br /&gt;如果要换成成200506,06-2005,2005-6-6或更多的该怎么办呢&lt;br /&gt;我们要用到:DateTime.ToString的方法(String, IFormatProvider)&lt;br /&gt;&lt;br /&gt;using System;&lt;br /&gt;using System.Globalization;&lt;br /&gt;String format=&quot;D&quot;;&lt;br /&gt;DateTime date=DataTime,Now;&lt;br /&gt;Response.Write(date.ToString(format, DateTimeFormatInfo.InvariantInfo));&lt;br /&gt;结果输出&lt;br /&gt;Thursday, June 16, 2005&lt;br /&gt;&lt;br /&gt;参数format格式详细用法&lt;br /&gt;格式字符 关联属性/说明 &lt;br /&gt;d ShortDatePattern &lt;br /&gt;D LongDatePattern &lt;br /&gt;f 完整日期和时&lt;img src =&quot;http://blog.csdn.net/haoliumeihua/aggbug/4089413.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 18 Apr 2009 20:08:00 +0800</pubDate><author>刘美华</author><comments>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089413.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089413.aspx</guid><dc:creator>刘美华</dc:creator><fs:srclink>http://blog.csdn.net/haoliumeihua/archive/2009/04/18/4089413.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haoliumeihua/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haoliumeihua/~7366314/207380325/5475830</fs:itemid></item><item><title>新站如何在一天内被Google和百度收录(经典)</title><link>http://blog.csdn.net/haoliumeihua/archive/2009/04/16/4084089.aspx</link><wfw:comment>http://blog.csdn.net/haoliumeihua/comments/4084089.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/haoliumeihua/comments/commentRss/4084089.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4084089</trackback:ping><description>&lt;br /&gt;新站如何在一天内被Google和百度收录( 如何赚钱,如何利用网络赚钱)&lt;br /&gt; 转载: 网络新站如何在一天内被Google和百度收录 网站被搜索引擎收录的重要性大家都很清楚，这里就不说了；对于一个新站，如果要一周或者一个月才被Google、百度搜索引擎收录的话这对站长来说是很不爽的，严重者还会影响网站的推广计划。那么新站如何在一天内被Google、百度等搜索引擎收录就成了网站推出时的重要一步了： 　　本人除了要管理公司的网站之外，自己在下班时间也在经营着自己的20多个个人网站，最近一时兴起又做了3个，每个都是在一天晚上就被搜索引擎收录的，三天就排在搜索引擎的第一页了（这是网站优化范畴，下次有时间再将排名经验和大家分享，感兴趣的站长有空关注一下我的博客 http://www.longjiashen.com ），高兴之余想和大家分享一下成功的快乐： 　　一、到搜索引擎表现比较友好的BBS发一个贴子 　　在这一步里我只到这两个论坛每个发一贴：站长论坛 http://bbs.chinaz.com 和 广州在线论坛 http://www.gz136.com/bbsgood/ 　&lt;img src =&quot;http://blog.csdn.net/haoliumeihua/aggbug/4084089.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 16 Apr 2009 22:16:00 +0800</pubDate><author>刘美华</author><comments>http://blog.csdn.net/haoliumeihua/archive/2009/04/16/4084089.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/haoliumeihua/archive/2009/04/16/4084089.aspx</guid><dc:creator>刘美华</dc:creator><fs:srclink>http://blog.csdn.net/haoliumeihua/archive/2009/04/16/4084089.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haoliumeihua/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haoliumeihua/~7366314/207380326/5475830</fs:itemid></item></channel></rss>