In SP has contains 10 query,By Using Dataset Object I need
to fetch 8th query of records? How?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / 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 |
Answer / 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 |
Explain the differences between Server-side and Client-side code?
What is a web api?
What is an il?
What is masterpage?
What is the application pool?
What is postback in asp net?
What is an Interface and What is an Abstract Class?
How many web.copnfig can exists in a web application & which will be used ?
Name and describe some HTTP Status Codes and what they express to the requesting client ?
How do you do exception management
Different type of validation controls in asp.net ?
1 Answers CTS, Keane India Ltd,
What is a postback ispostback and autopostback in asp net?