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 |
How many ways are there to maintain a state in .net? What is view state?
How does the service stream content?
when we write the html code with runat = server it works like a server control than why we use the server control?
What is Web Services?How we can consume a Web Services in our application?Explain.
What events will occur when a page is loaded?
What is the difference between web.config and machine.config in ASP.NET?
What is difference Between Authentication and authorization?
Explain diff. Between friend and protected friend?
Why do we need asp.net?
Where would you use an ihttpmodule, and what are the limitations if any?
Difference between windows application and web application? Which is the best for updation purpose?
hi wrever i go thy r asking depth abt 3-tier architecture i.e, hw to deploy 3 layers into 3 servers i do nt have much idea on deployment. can any one send me the tips or code if u hav kindly mail me.