摘要: 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 大江 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 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 大江 阅读(355) 评论(0) 推荐(0) 编辑
摘要: TreeView+Checkbox级联操作步骤1、前台页面拖放一个Treeview,将其ShowCheckBoxes属性设置为All[代码]步骤2、在后台代码中添加Treeview的特性,使得Treeview控件在单击时触发JavaScript实现的级联逻辑代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http... 阅读全文
posted @ 2010-08-20 08:18 大江 阅读(235) 评论(0) 推荐(0) 编辑