Answer Posted / gitam singh
The DataGrid provides the means to display a group of records from the data source (for example, the first 10), and then navigate to the "page" containing the next 10 records, and so on through the data.
Using Ado.Net we can explicit control over the number of records returned from the data source, as well as how much data is to be cached locally in the DataSet.
1.Using DataAdapter.fill method give the value of 'Maxrecords' parameter
(Note: - Don't use it because query will return all records but fill the dataset based on value of 'maxrecords' parameter).
2.For SQL server database, combines a WHERE clause and a ORDER BY clause with TOP predicate.
3.If Data does not change often just cache records locally in DataSet and just take some records from the DataSet to display.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is aspect-oriented programming?
What is slidemaster?
What is event in asp.net?
What is postback and autopostback in asp.net?
What is the use of HttpHandlers? When to use this?
How would you implement inheritance using c#?
Describe the difference between inline and code behind - which is best in a?
What is windows active directory authentication?
Differentiate between namespace and assembly.
I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side)
What can we do with asp.net?
How many types of sessions in asp.net?
What are the namespaces used in asp.net mvc? : asp.net mvc
Explain how do you deploy your asp.net application?
What parameters can you pass in the url of the api?