交流,学习,进步!

千里之行始于足下……
  博客园  :: 首页  :: 联系 :: 订阅 订阅  :: 管理

2009年4月29日

摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->1//函数功能:只能输入0,正整数。并可以设置输入正整数的最大值。 2... 阅读全文

posted @ 2009-04-29 17:42 xixi8820 阅读(719) 评论(0) 推荐(0) 编辑

2008年10月15日

摘要: 关于VS2005中GridView的自定义分页,单选、多选、排序、自增列的简单应用。 多选时,只有全部选中时“多选”才选中。 图片效果: 代码如下: .aspx Code highlighting produced by Actipro CodeHighlighter (freeware)ht... 阅读全文

posted @ 2008-10-15 17:19 xixi8820 阅读(539) 评论(0) 推荐(0) 编辑

2008年5月22日

摘要: 使用t-sql从身份证号中提取生日(转自别人,个人学习收藏用) 阅读全文

posted @ 2008-05-22 17:33 xixi8820 阅读(708) 评论(1) 推荐(0) 编辑

2008年2月24日

摘要: string strConnString = "server = (local); database = myStudy; uid = sa;pwd = "; 阅读全文

posted @ 2008-02-24 09:21 xixi8820 阅读(239) 评论(0) 推荐(0) 编辑

2008年2月22日

摘要: 很多人都觉得这两个方法差不多,但是,实际上,他们差的很远呢 因为setTimeout(表达式,延时时间)在执行时,是在载入后延迟指定时间后,去执行一次表达式,记住,次数是一次 而setInterval(表达式,交互时间)则不一样,它从载入后,每隔指定的时间就执行一次表达式 所以,完全是不一样的... 阅读全文

posted @ 2008-02-22 14:25 xixi8820 阅读(2317) 评论(0) 推荐(0) 编辑

2008年2月21日

摘要: 1//传入一个table的id,将table的全部内容导出excel文件 2functionAutomateExcel(objTable) 3{ 4//StartExcelandgetApplicationobject. 5varoXL=newActiveXObject("Excel.Applic... 阅读全文

posted @ 2008-02-21 14:30 xixi8820 阅读(5031) 评论(2) 推荐(0) 编辑

摘要: 1//取得日期字符串,返回YYYY-MM-DD 2functiongetDate(date) 3{ 4varthisYear=date.getYear(); 5varthisMonth=date.getMonth()+1; 6//如果月份长度是一位则前面补0 7if(thisMonth10)thi... 阅读全文

posted @ 2008-02-21 14:09 xixi8820 阅读(1218) 评论(0) 推荐(0) 编辑

2007年12月11日

摘要: 下面的代码我已经测试成功。 1usingSystem; 2usingSystem.Data; 3usingSystem.Configuration; 4usingSystem.Web; 5usingSystem.Web.Security; 6usingSystem.Web.UI; 7usingSys... 阅读全文

posted @ 2007-12-11 10:23 xixi8820 阅读(248) 评论(0) 推荐(0) 编辑

2007年12月5日

摘要: DataFormatString="{0:格式字符串}" 我们知道在DataFormatString 中的 {0} 表示数据本身,而在冒号后面的格式字符串代表所们希望数据显示的格式 阅读全文

posted @ 2007-12-05 09:55 xixi8820 阅读(304) 评论(0) 推荐(0) 编辑

2007年12月4日

摘要: 1. Bin文件夹 Bin文件夹包含应用程序所需的,用于控件、组件或者需要引用的任何其他代码的可部署程序集。该目录中存在的任何.dll文 件将自动地链接到应用程序。 2. App_Browser文件夹 该可选的文件夹包含.browser文件。.browser文件描述浏览器(不管是移动设备浏览器,... 阅读全文

posted @ 2007-12-04 14:18 xixi8820 阅读(17017) 评论(9) 推荐(1) 编辑