文章分类 -  DATAGRID

一个功能齐全的DataGrid分页例子
摘要:... 阅读全文

posted @ 2006-06-21 17:07 しovのんeТs 阅读(154) 评论(0) 推荐(0)

DataGrid资料大全
摘要:关于datagrid的打印http://www.chinaaspx.com/article/csharp/295.htmC#中为DataGrid添加下拉列表框http://www.cnblogs.com/icesnaker/archive/2004/09/21/45015.aspxDataGrid也玩分页http://dev.csdn.net/article/32/32339.shtmDataGr... 阅读全文

posted @ 2006-06-21 14:41 しovのんeТs 阅读(130) 评论(0) 推荐(0)

WebForm中DataGrid的20篇经典文章
摘要:自认为以下文章比较经典,希望对初学者有用^_^ 1、DataGrid动态模板列更新数据并且分页的例子 http://www.cnblogs.com/lovecherry/archive/2005/03/26/126102.html 2、DataGrid动态添加模板列的一个例子 http://www.cnblogs.com/lovecherry/arc... 阅读全文

posted @ 2006-06-21 14:35 しovのんeТs 阅读(149) 评论(0) 推荐(0)

DataGrid使用心得(附大量代码)
摘要:1. 为 DataGrid 控件设计样式 在之后添加如下代码 说明: (1) 在每个标签内主要是 ForeColor BackColor Font-Bold 这几个属性值 2. 为 DataGrid 控件添加绑定列 说明: (1) 在标签内的基本属性是 DataFie... 阅读全文

posted @ 2006-06-19 17:11 しovのんeТs 阅读(259) 评论(1) 推荐(0)

DataGrid自定义分页存储过程
摘要:存储过程代码: CREATE proc page@RecordCount int output,@QueryStr nvarchar(100)='table1',--表名、视图名、查询语句@PageSize int=20, --每页的大小(行数)@PageCurrent int=1, --要显示的页@FdShow nvarchar (1000)='*', --要显示的字段列表@Identity... 阅读全文

posted @ 2006-06-11 10:49 しovのんeТs 阅读(134) 评论(0) 推荐(0)