In SP has contains 10 query,By Using Dataset Object I need
to fetch 8th query of records? How?
Answer Posted / devanathan
Get the DateSet Object's 8th table will give you the 8th
query records.
DataSet ds = new DataSet();
DataTable dt = new DataTable();
dt=ds.Tables[8];
Now dt will have the records returned by the 8th query
| Is This Answer Correct ? | 7 Yes | 13 No |
Post New Answer View All Answers
Explain about asp.net state management?
What is application and session in asp.net?
Explain the difference between value type and reference type?
What is the difference between ldap and active directory?
What are the data controls available in asp.net?
Why SessionID changes in every request in asp.net?
Define managed code and managed data in .net?
What is difference between web api and web services?
What are the types of authentication in asp.net?
What are the different types of validation controls provided in ASP.NET?
What are the ways to show data grid inside a data grid for a master details type of tables? If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
What is a response cookie?
What is the difference between response.redirect and server.transfer?
How to fetch a data from one table to another table in asp.net ?
What is boxing and unboxing in asp.net?