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 Areas in MVC?
What is the use of the tag in the web.config file?
Is there any limit for query string? Means what is the maximum size?
What is viewstate parameter?
What is viewstate? In which event of the page life cycle, is the viewstate available?
Why do we use sessions?
What do you mean by marshalbyref?
what is DLL Hell and how it is solved in .NET? please explain clearly??
Explain the difference between debug.write and trace.write?
How long does an http session last?
i want the asp.net technical questions and answeres
Explain what the contents of cookie?
Where do the cookie state and session state information be stored?
What is the difference between file-based dependency and key-based dependency?
Where can I get information on cookies in asp.net?