In SP has contains 10 query,By Using Dataset Object I need
to fetch 8th query of records? How?
Answer Posted / javed
DataSet ds = new DataSet();
DataTable dt = new DataTable();
dt=ds.Tables[7];
because index start 0.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Why do we use web config?
What is the difference between ASP.NET Webforms and ASP.NET MVC?
How to handle errors in Web API?
How you will handle session when deploying application in more than a server?
Define satellite assemblies.
Explain the differences between managed and unmanaged code?
Disable browser cache for entire ASP.NET website?
How can you make sure that web api returns json data only?
What is advantage of asp.net?
Where you store Connection string in "Web.Config" file in ASP.NET?
What are the disadvantages of asp.net?
List some of the important session state modes of asp.net.
What is intrinsic objects in asp.net?
Define a static class?
How can we identify that the Page is Post Back?