difference between gridview,data list and repeater control
Answer Posted / vikas
GridView provides ability to allow the end-user to edit the page data or sort the page records. But it comes at a cost of speed. Secondly, the display format is very simple i.e. is in row and columns.
With its templates, DataList provides more control over the look and feel of the displayed data than the GridView. And it offers better performance than GridView.
With Repeater, the only HTML emitted are the values of the databinding statements in the templates along with the HTML markup specified in the templates—no "extra" HTML is emitted, as with the Gridview and DataList.
for details check below link.
https://csharpquestions1.blogspot.in/2016/10/what-is-difference-between-data-list.html
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
while developing webservices if i want some users to use my webservice only how can i give security to my webservice?
What are the steps involved to fill a dataset?
How would you create a permanent cookie?
What is difference between Fragment Caching and Page Caching in ASP.NET?
What is viewstate? What does the “enableviewstate” property do?
How do we sort the data from a dataset?
To bind columns manually which tags do you need to add within the asp:datagrid ?
How to display validation messages in one control?
What are the advantages and limitations of query string?
Write the different features of a Thread and a Process?
Explain how is a property designated as read-only?
What is the postback property in asp.net?
Explain significance of routing? : asp.net mvc
What are the different types of Caching techniques in ASP.NET?
What is data grid view in asp.net?