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
Do cookies store passwords?
What is the difference between c# and .net?
If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?
Can you explain the importance of finalize method in .net?
How information about the user's locale can be accessed?
Explain about ASP.NET?
What is a web api? Which protocol is used in a web api?
What is a user session?
How do we sort the data from a dataset?
Is post back in asp.net?
What is full trust in asp.net?
How does session id work?
Does asp.net still recognize the global.asa file?
What are the difference between function and stored procedure in .net programming language?
What is the use of session?