2007年7月9日
摘要: Download demo project - 15.5 Kb http://www.codeproject.com/aspnet/Datagrid_Col_Example.asp Introduction Many ASP.NET applications utilize the DataGrid control. This control provides the abil... 阅读全文
posted @ 2007-07-09 13:38 巍巍边疆 阅读(457) 评论(0) 推荐(0)
摘要: Download source files - 20 Kb http://www.codeproject.com/aspnet/Web_Visitor_Tracking.asp Introduction When you want to collect more data about your website visitors and client platform whic... 阅读全文
posted @ 2007-07-09 13:34 巍巍边疆 阅读(288) 评论(0) 推荐(0)
摘要: Download demo project and source files - 39.1 Kb http://www.codeproject.com/aspnet/EmbeddedUserControl.asp Introduction Visual Studio 2005 Service Pack 1 restores support for ASP.NET Web Pr... 阅读全文
posted @ 2007-07-09 13:32 巍巍边疆 阅读(485) 评论(0) 推荐(0)
摘要: 三年多前獨立開發的(HRM-MS),因為那時候還只會ASPWeb+JavaScipt+SQLServer+CSS,數數資料表也有四五十張,當時系統規劃的還是不錯,至少現在看來還有點技術含量,二次開發的餘地很大;:)如圖: 阅读全文
posted @ 2007-07-09 13:18 巍巍边疆 阅读(442) 评论(0) 推荐(0)
摘要: 如圖:flow部分除外 阅读全文
posted @ 2007-07-09 12:57 巍巍边疆 阅读(179) 评论(0) 推荐(0)
摘要: Download demo project + source files - 192 Kb http://www.codeproject.com/aspnet/WebDrive.asp Introduction This article will present a full ASP.NET web application written in pure C#. You'l... 阅读全文
posted @ 2007-07-09 12:46 巍巍边疆 阅读(680) 评论(0) 推荐(0)
摘要: Download source files - 430 Kb http://www.codeproject.com/aspnet/EditNestedDataGrid.asp Latest Update Before using the source code, you have to grant full access to ASPNET account on the f... 阅读全文
posted @ 2007-07-09 12:42 巍巍边疆 阅读(758) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2007-07-09 11:31 巍巍边疆 阅读(107) 评论(0) 推荐(0)
摘要: 我们写Form时,如果每次都要写检验代码,那就太低效率了,这里有些常用的检验代码,与大家共享。 //----------------------------------------------------空格判断function isWhitespace (s){ var whitespace = " \t\n\r";var i;for (i = 0; i = 0) {return true;}}... 阅读全文
posted @ 2007-07-09 11:18 巍巍边疆 阅读(294) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2007-07-09 11:17 巍巍边疆 阅读(227) 评论(0) 推荐(0)
摘要: http://www.cnblogs.com/singlepine/archive/2006/01/01/309354.html1.html代码 DataGridTooltip ... 阅读全文
posted @ 2007-07-09 11:15 巍巍边疆 阅读(198) 评论(0) 推荐(0)
摘要: 我们在制作网站的时候,尤其是各种电子商务网站,首先都会让用户填写一些表格来获取注册用户的各种信息,因为用户有可能输入各式各样的信息,而有些不符合要求的数据会给我们的后端ASP处理程序带来不必要的麻烦,甚至导致网站出现一些安全问题。... 阅读全文
posted @ 2007-07-09 11:13 巍巍边疆 阅读(555) 评论(0) 推荐(0)
摘要: 摘要ASP.NET功能强大的一种体现就是具有丰富的Web控件,这里我们谈谈其中的一种—验证控件。它总结了各种Web数据校验方式,设计成了今天这种通用的ASP.NET控件形式。 -------------------------------------------------------------------------------- 目录1. 验证控件简介2. 验证控件的使用方法3. 小结 --... 阅读全文
posted @ 2007-07-09 11:12 巍巍边疆 阅读(686) 评论(0) 推荐(0)
摘要: RegularExpressionValidator Web 控件可以用来执行更详细的验证,也就是说可以做更细微的限制。其使用语法为: 其常用属性说明如下表所示:[無圖] ValidationExpression 验证规则 其中ValidationExpression 验证规则属性为限制数据所输入的叙述,其常用符号如下表所示: [] 符号 「[]」符号可以用来定义接受的单一字符,例如... 阅读全文
posted @ 2007-07-09 11:11 巍巍边疆 阅读(361) 评论(0) 推荐(0)
摘要: 轉載自http://anf.cnblogs.com/ 正则表达式的概念和作用就不多说了。正则表达式不好写(不好想),所以有很多工具来帮助我们写正则表达式,The Regulator 就是其中的佼佼者(被列入MSDN上的知名文章《Ten Must-Have Tools Every Developer Should Download Now》)。 The Regulator官方网站http:/... 阅读全文
posted @ 2007-07-09 11:08 巍巍边疆 阅读(1438) 评论(0) 推荐(0)
摘要: 只能输入数字:"^[0-9]*$"。只能输入n位的数字:"^\d{n}$"。只能输入至少n位的数字:"^\d{n,}$"。只能输入m~n位的数字:。"^\d{m,n}$"只能输入零和非零开头的数字:"^(0|[1-9][0-9]*)$"。只能输入有两位小数的正实数:"^[0-9]+(.[0-9]{2})?$"。只能输入有1~3位小数的正实数:"^[0-9]+(.[0-9]{1,3})?$"。只能输... 阅读全文
posted @ 2007-07-09 11:07 巍巍边疆 阅读(176) 评论(0) 推荐(0)