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
They mostly asked difference between versions of technologies
How are sessions stored?
What are the Difference between asp.net and asp ?
Hello, Using Visual Studio 2005 (VB) I am working to create a Web Site implementing the following: Within a gridView I have placed a dropdownlist control with a DataSourceID="SDSLkupList". SDSLkupList is a sqlDataSource used to store a lookup list for dropdownlist translation from ID to text. SDSLkupList contains the translation text and other fields related to the dropdown selection ID. (Thought it would be efficient to get everything at the same time.) I would like to provide the user the ability to select from the dropdownlist and, based on the selection, use labels to list related columns stored on the SDSLkupList in separate gridView columns. I have read that SqlDataSources are not meant to be used for individual controls. Since SDSLkupList contains all related information, is there a way to do a find using the dropdownlist selectedValue? (I was not able to discover one.) Otherwise, what should I use? It would need to set the labels on the gridView DataRowBound event as well as the SelectedIndexChanged events. Has anyone done this? Any help would be appreciated. Thanks in Advance. Neal
How to retrieve user name in case of Window Authentication?
What are the differences between code behind and code inline?
Explain Optimization technique description?
What are the different types of sessions in asp.net?
We Only Know The Total Number Of Feet In The Farmyard. Write A Program that will compute the total number of rabbits and chickens in the farmyard. Assume number of feet in the farmyard are 40. how many rabbits and chickens are?
What is the use of data set in asp.net?
What is autopost?
What does clearing cache?
Describe the application event handlers in ASP.NET?
What is the flow of processing of the request? : asp.net mvc
Why is global asax is used?