datagrid

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
 
C

chanmm

This is the normal paging:

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

}

chanmm
 

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

Top