c# - How to do paging a single row data in ASP.NET -
i have article large (single database row) , need show page page.
if have been dataset (multiple row) have shown on grid server side paging.
for single large row, how fragment page page?
typical case when user submits large article.
can split text content of article on paragraph breaks , make list<string>
out of them, bind paging , grid controls. when page posted back, article split chunks in same way , paging work.
you of course cache list<string>
across requests save having go database , process record repeatedly.
Comments
Post a Comment