datagrid

  • Thread starter Thread starter kalaivanan
  • Start date Start date
K

kalaivanan

hi,
i am going to use ajax for datagrid paging events.
may i know how paging in datagrid works.
i.e., how does the records are displayed for the corresponding page
choosed.

kalaivanan
 
This is the normal paging:

protected void GridView1_PageIndexChanging(object sender,
GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
GetDataSource();

}

chanmm
 
hi,
i am going to use ajax for datagrid paging events.
may i know how paging in datagrid works.
i.e., how does the records are displayed for the corresponding page
choosed.

kalaivanan
Please post ASP.NET related questions to
microsoft.public.dotnet.framework.aspnet.

Thanks and
Good luck with your project,

Otis Mukinfus
http://www.arltex.com
http://www.tomchilders.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top