﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>博客园-qianbao -最新评论</title><link>http://www.cnblogs.com/qianbao/CommentsRSS.aspx</link><description>文采有限,写不出系统的文章....所以只能记录一些小小的知识点&lt;br/&gt;没有真正的捷径能绕过黑暗直达黎明..</description><language>zh-cn</language><pubDate>Thu, 03 Jul 2008 03:55:44 GMT</pubDate><lastBuildDate>Thu, 03 Jul 2008 03:55:44 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: asp.net实现发送email</title><link>http://www.cnblogs.com/qianbao/archive/2008/06/30/1103258.html#1239784</link><dc:creator>qianbao</dc:creator><author>qianbao</author><pubDate>Mon, 30 Jun 2008 01:04:25 GMT</pubDate><guid>http://www.cnblogs.com/qianbao/archive/2008/06/30/1103258.html#1239784</guid><description><![CDATA[using System.Net;<br>using System.Net.Mail;<br><br><div align=right><a style="text-decoration:none;" href="http://qianbao.cnblogs.com/" target="_blank">qianbao</a> 2008-06-30 09:04 <a href="http://www.cnblogs.com/qianbao/archive/2008/06/30/1103258.html#1239784#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 一个不错的日历控件(javascript写的).</title><link>http://www.cnblogs.com/qianbao/archive/2008/05/30/1102470.html#1214143</link><dc:creator>牛人</dc:creator><author>牛人</author><pubDate>Fri, 30 May 2008 14:05:38 GMT</pubDate><guid>http://www.cnblogs.com/qianbao/archive/2008/05/30/1102470.html#1214143</guid><description><![CDATA[不错，很好用<br><br><div align=right><a style="text-decoration:none;" href="http://qianbao.cnblogs.com/" target="_blank">牛人</a> 2008-05-30 22:05 <a href="http://www.cnblogs.com/qianbao/archive/2008/05/30/1102470.html#1214143#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: GridView列数字、货币和日期的显示格式[转载]</title><link>http://www.cnblogs.com/qianbao/archive/2008/05/28/1026857.html#1211470</link><dc:creator>qianbao</dc:creator><author>qianbao</author><pubDate>Wed, 28 May 2008 03:32:00 GMT</pubDate><guid>http://www.cnblogs.com/qianbao/archive/2008/05/28/1026857.html#1211470</guid><description><![CDATA[1、DateTime 数字型 <br>System.DateTime currentTime=new System.DateTime();<br><br>1.1 取当前年月日时分秒 <br>currentTime=System.DateTime.Now; <br>1.2 取当前年 <br>int 年=currentTime.Year; <br>1.3 取当前月 <br>int 月=currentTime.Month; <br>1.4 取当前日 <br>int 日=currentTime.Day; <br>1.5 取当前时 <br>int 时=currentTime.Hour; <br>1.6 取当前分 <br>int 分=currentTime.Minute; <br>1.7 取当前秒 <br>int 秒=currentTime.Second; <br>1.8 取当前毫秒 <br>int 毫秒=currentTime.Millisecond; <br>（变量可用中文） <br><br>1.9 取中文日期显示——年月日时分 <br>string strY=currentTime.ToString(&quot;f&quot;); //不显示秒 <br><br>1.10 取中文日期显示_年月 <br>string strYM=currentTime.ToString(&quot;y&quot;); <br><br>1.11 取中文日期显示_月日 <br>string strMD=currentTime.ToString(&quot;m&quot;); <br><br>1.12 取中文年月日 <br>string strYMD=currentTime.ToString(&quot;D&quot;); <br><br>1.13 取当前时分，格式为：14：24 <br>string strT=currentTime.ToString(&quot;t&quot;); <br><br>1.14 取当前时间，格式为：2003-09-23T14:46:48 <br>string strT=currentTime.ToString(&quot;s&quot;); <br><br>1.15 取当前时间，格式为：2003-09-23 14:48:30Z <br>string strT=currentTime.ToString(&quot;u&quot;); <br><br>1.16 取当前时间，格式为：2003-09-23 14:48 <br>string strT=currentTime.ToString(&quot;g&quot;); <br><br>1.17 取当前时间，格式为：Tue, 23 Sep 2003 14:52:40 GMT <br>string strT=currentTime.ToString(&quot;r&quot;); <br><br><br><div align=right><a style="text-decoration:none;" href="http://qianbao.cnblogs.com/" target="_blank">qianbao</a> 2008-05-28 11:32 <a href="http://www.cnblogs.com/qianbao/archive/2008/05/28/1026857.html#1211470#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: jsp 防止刷新重复提交</title><link>http://www.cnblogs.com/qianbao/archive/2008/03/11/1087700.html#1100492</link><dc:creator>qianbao</dc:creator><author>qianbao</author><pubDate>Tue, 11 Mar 2008 06:10:00 GMT</pubDate><guid>http://www.cnblogs.com/qianbao/archive/2008/03/11/1087700.html#1100492</guid><description><![CDATA[最简单的方式,还是redirect<br><br><div align=right><a style="text-decoration:none;" href="http://qianbao.cnblogs.com/" target="_blank">qianbao</a> 2008-03-11 14:10 <a href="http://www.cnblogs.com/qianbao/archive/2008/03/11/1087700.html#1100492#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 在呆下去.我真的什么都不会了..</title><link>http://www.cnblogs.com/qianbao/archive/2008/03/08/1092661.html#1096617</link><dc:creator>qianbao</dc:creator><author>qianbao</author><pubDate>Sat, 08 Mar 2008 08:53:00 GMT</pubDate><guid>http://www.cnblogs.com/qianbao/archive/2008/03/08/1092661.html#1096617</guid><description><![CDATA[@someone2008<br><br>呵呵...<br><br><br><div align=right><a style="text-decoration:none;" href="http://qianbao.cnblogs.com/" target="_blank">qianbao</a> 2008-03-08 16:53 <a href="http://www.cnblogs.com/qianbao/archive/2008/03/08/1092661.html#1096617#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 在呆下去.我真的什么都不会了..</title><link>http://www.cnblogs.com/qianbao/archive/2008/03/05/1092661.html#1092711</link><dc:creator>someone2008</dc:creator><author>someone2008</author><pubDate>Wed, 05 Mar 2008 15:32:00 GMT</pubDate><guid>http://www.cnblogs.com/qianbao/archive/2008/03/05/1092661.html#1092711</guid><description><![CDATA[yes,if it's time to leave,just do it,and then you will know what's you want<br><br><div align=right><a style="text-decoration:none;" href="http://qianbao.cnblogs.com/" target="_blank">someone2008</a> 2008-03-05 23:32 <a href="http://www.cnblogs.com/qianbao/archive/2008/03/05/1092661.html#1092711#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>