2
Answers

paging with data list c#

how to create paging with data list 
 
 
please solve this query:
 
i want to create paging like this:
 
 
 1 2 3 4 5 .... next
 
when mouse over 2 show url like : .....page=2 
Answers (2)
0
Sukesh Marla

Sukesh Marla

NA 11.8k 1.2m 12y
in  "PageIndexChanging"  you have to rebind the datagrid as 

protected void grdView_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
    FillGrid();
    grdView.PageIndex = e.NewPageIndex;
    grdView.DataBind();
}

Try this


Check this is correct answer if it helped.