Answer Posted / kundal singh
DatasetAdapter sda = new DatasetAdapter("select * from
tablename");
Dataset ds = new Dataset();
sds.fill(ds);
ds.Tables[0].TableName = "tablename";
sda.Fill(ds, "tablename");
sda.Fill(StartIndex, Numbers, ds.Tables)
sda.Fill(0, 25, dt);
sda.Fill(25, 200, ds.Tables["tablename"]);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the current version of asp.net?
How does u get record no from 5 to 15 from a dataset of 100 records?
How much is the pay-for-use service if I chose not to use microsoft-sponsored advertising?
How do you secure your connection string information?
What is view state and how it works in asp net?
What is the concepts of globalization and localization in .net?
Explain in what order a destructors is called.
Define reflection in .net?
What is the difference between page-level caching and fragment caching?
What is the purpose of using MVC programming pattern in ASP.NET?
Why mvc is better than asp.net? : Asp.Net MVC
What kind of data we can store in viewstate?
List down the sequence of methods called during the page load.
Where is the view state data stored?
What is GAC in ASP.NET 2.0