Get Grid Header after gridview Binding Programming Web Development by ssreevidya.m Hi I add an additional headerrow for pagesizing. The additional row is added on GrdRemarkNature_RowCreated event. Code I … Gridview PageSizing Programming Web Development by ssreevidya.m hai, I used gridview pager for page sizing. But I have more than 15 web pages that are also needed page sizing. how can i create a class for this purpose and access it. The code I used is: [CODE] protected void GrdStudent_RowCreated(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.Pager)… Re: Gridview PageSizing Programming Web Development by kouroshnik hi bro, can u explain more about your problem, any way try this: [CODE] private void LoadData(int [COLOR="red"][U][B]PageSize[/B][/U][/COLOR]) { DataTable dt = new DataTable(); dt= "your query to DataBase " PagedDataSource pgitems = new PagedDataSource(); … Re: Gridview PageSizing Programming Web Development by ssreevidya.m hai, thank you for your replay. but my problem is that the two events I described can call from a class to the aspx pages taht includes gridview. I could call the first event but couldnt second. I did it like follows: Class: [CODE]public class GetGridEvent { public GetGridEvent() { // // TODO: Add constructor logic here //… Re: Gridview PageSizing Programming Web Development by jomgrg You can use Pagesize property and set that. Re: Get Grid Header after gridview Binding Programming Web Development by Shantanu88d try to write this code in GridView's RowDataBinding event