As far as I see,I don't think you need to page with xslt but xml is enough:
1)Just make that your xml's formattion can be serialized into a DataTable/DataSet and then save all the data contents into ViewState for futher usage……。
2)Then please handle the GridView_Paging,and then use:
GridView1.PageIndex = e.NewPageIndex;
GridView1.DataSource = ViewState["name"] as DataTable;
GridView1.DataBind();
sarojtech
Member
7 Points
9 Posts
Pagination with XML and Xslt
May 07, 2012 05:13 AM|LINK
How to do pagination with XML and Xslt
Decker Dong ...
All-Star
118619 Points
18779 Posts
Re: Pagination with XML and Xslt
May 09, 2012 01:33 AM|LINK
As far as I see,I don't think you need to page with xslt but xml is enough:
1)Just make that your xml's formattion can be serialized into a DataTable/DataSet and then save all the data contents into ViewState for futher usage……。
2)Then please handle the GridView_Paging,and then use: