Answer Posted / bhavesh chhatrala
Using pagination option in DataGrid control. We have to set
the number of records for a page, then it takes care of
pagination by itself.
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Why web api is better than wcf?
What is custom events? How to create it?
ASP.NET 2.0's new membership API used for creating and managing user account is exposed through which 2 clause?
How to fetch a data from one table to another table in asp.net ?
How is a session stored and maintained in asp.net?
What is the asp.net control toolkit?
How do you sign out from forms authentication?
Does asp.net still recognize the global.asa file?
How do we sort the data from a dataset?
Explain the overview of asp.net?
Is asp.net still used?
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 css in asp.net?
Describe the .net base class library.
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