If i have 1000 records in dataset, how to do paging?
Answer Posted / sunil kumar singh
for(int i=0;i<ds.Count;i++)
{
arraylist arr=new arraylist();
string abc;
abc=ds.Tables["tablename"].Rows[0][i].ToString();
arr.Add(abc);
}
| Is This Answer Correct ? | 4 Yes | 9 No |
Post New Answer View All Answers
What is a runtime version?
How can you ensure a permanent cookie?
By default, Web API sends HTTP response with which of the following status code for all uncaught exception?
Explain what are webservices?
What are sharepoint pages?
Is asp.net 64-bit enabled? How?
What’s difference between “optimistic” and “pessimistic” locking?
What r the asp.net list controls and diff. Between them?
What is web api vs wcf?
Can anyone please tell me that the question posted on this website are Sufficient for the interview with 2+ year experience in .net
What is ashx file in asp.net?
What is custom events?
Explain the namespace classes used in asp.net mvc? : asp.net mvc
How many ways are there to maintain a state in .net? What is view state?
If you have an application with multiple security levels though secure login and my ASP.NET web appplication is spanned across three web-servers by using round-robbin load balancing. Explain which is the best approach to maintain login-in state for the users?