Hi,
I have three radio buttons, based on checked property there is dynamic gridview for all of them.
In that i want to implement page indexing.
But the problem is,
private void fillgrid()
{
dsReports.Tables.Add(dtReport);
gvReport.DataSource = dsReports.Tables[0];
gvReport.DataBind();
}
page indexing:
gvReport.PageIndex = e.NewPageIndex;
fillgrid();
on click of page index, the page is refreshing and the data is lost.
Kindly help me.
Thanks&Regards,
Rajsekhar.