In asp.net Web application, i write code for datalist paging like this :
PagDat = new PagedDataSource();
PagDat.AllowPaging = true;
PagDat.PageSize = 10;
PagDat.CurrentPageIndex = **currentpage**;
PagDat.DataSource = ds.Tables[0].DefaultView;
dtlstMagazine.DataSource = PagDat;
dtlstMagazine.DataBind();
In this “currentpage” is a integer varaible which i declared as a static. I think it could be conflict when more user access this page am i right?
Yes your are right.
Create CurrentPage
property:Check following link for more information:
Adding Paging Support to the Repeater or DataList with the PagedDataSource Class