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
How to find last error which occurred?
What is preprocessor in .net? Where it use?
What is session handling in a webfarm, how it can work with its limits?
In the Repeater control which way you can edit?
Is there any alternative to avoid name collisions other then Namespaces?
What are the authentication types in asp.net?
What is postback request?
What is ispostback method in asp.net? Why do we use that?
Can we override the enablepartialrendering property of the scriptmanager class?
What is custom events?
How to turn off cookies for a page?
What is the purpose of App_Code folder in ASP.NET? Why we this?
Can you use c# without .net?
What does mvc represent in asp.net? : asp.net mvc
What is manifest in .net framework?