08 2010 档案
常用JS验证函数总结
摘要:常用JS验证函数总结 随着做项目数量的越来越越多,其中用到js的地方很多相同,这里自己整理了一些常用表单验证的js方法,虽然和其他js验证框架有一定的差距,但是毕竟是自己总结的一些东西,在此与纪录分享一下。JS验证 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.c... 阅读全文
posted @ 2010-08-24 09:47 大江 阅读(191) 评论(0) 推荐(0)
sqlhelper
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.SqlClient; using System.Collections; using System.Data; using System.Configuration; using System... 阅读全文
posted @ 2010-08-20 08:24 大江 阅读(336) 评论(0) 推荐(0)
SQl查询数据库表名、表的列名
摘要:SQl查询数据库表名、表的列名--读取库中的所有表名select name from sysobjects where xtype='u'--读取指定表的所有列名select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='表名')获取数据库表名和字段sqlserver中... 阅读全文
posted @ 2010-08-20 08:21 大江 阅读(379) 评论(0) 推荐(0)
【原】TreeView+Checkbox级联操作(IE/FireFox测试通过)
摘要:TreeView+Checkbox级联操作步骤1、前台页面拖放一个Treeview,将其ShowCheckBoxes属性设置为All[代码]步骤2、在后台代码中添加Treeview的特性,使得Treeview控件在单击时触发JavaScript实现的级联逻辑代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http... 阅读全文
posted @ 2010-08-20 08:18 大江 阅读(242) 评论(0) 推荐(0)