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 are assemblies and namespaces and explain the difference between them ?
Can we set master page as a start page?
What do you mean by marshalbyref?
Is asp.net and .net the same?
What are navigation controls? How many navigation controls are there in ASP.NET 4.0?
Do session use cookies in asp net?
What are the security types in ASP/ASP.NET? Different Authentication modes?
Differentiate between structure and class.
What is manifest in .net framework?
What is a web api endpoint?
How tooltip is set through code-behind in ASP.NET?
What is the difference between debug and release?
What is bson in web api?
What is the difference between a multi-layer and multi-tier applications?
What is use of Master Page in ASP.NET web pages?