Asp.net 2.0 自定义控件开发


Extended GridView Control

GridView 72般绝技(二)


扩展GridView控件(索引) - 增加多个常用功能




//扩展GridView分页功能
using System; 
using System.Collections.Generic; 
using System.Collections; 
using System.ComponentModel; 
using System.Data; 
using System.Text; 
using System.Web; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
using System.Reflection; 
using System.Reflection.Emit; 
using Microsoft.ApplicationBlocks.Data; 

namespace JDGLWebControls 

[DefaultProperty(
"SelectedValue")] 
[ToolboxData(
"<{0}:SuperGridView runat=server></{0}:SuperGridView>")] 
public class SuperGridView : GridView 

"声明变量" 

"自定义属性" 

"重写的方法" 


"自定义方法" 


"创建分页控件" 

"跳页" 

"创建分页信息" 


"反射" 


}
 
}