In SP has contains 10 query,By Using Dataset Object I need
to fetch 8th query of records? How?
Answer Posted / jignesh contractor
From SP we want the 8th query.....
so that we can be access by
DataSet ds = new DataSet();
DataTable dt = new DataTable();
dt = ds.Tables[8]; //As Index Starts from 0th Index....
Now dt will have the records returned by the 8th query..
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What is difference between View State and Hidden Field in ASP.NET?
What setting must be added in the configuration file to deny a particular user from accessing the secured resources?
What is difference between mvc and asp.net? : Asp.Net MVC
Explain difference between dataset and datareader?
Explain the function of new view engine in asp.net? : asp.net mvc
What is connection pooling and how to enable and disable connection pooling?
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
What is jade template engine?
What is dynamic web page with example?
Explain what is an abstract class?
How to disable validator control by client side JavaScript?
Can you explain one critical mapping? Performance issue which one is better? Whether connected lookup tranformation or unconnected one?
What is the use of response redirect in asp.net?
Explain security types in asp.net?
Explain Areas in MVC?