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
How does the cookies work in asp.net?
How do we sort the data from a dataset?
What is a web pool?
What is the difference between the asp and asp.net?
What are the advantages and disadvantages of Using Cookies?
How can we pass info between 2 asp.net pages?
What is the use of placeholder control?
Explain the difference between dataset and datareader.
How would you create a permanent cookie?
What is GAC in ASP.NET 2.0
What are the different types of Caching techniques in ASP.NET?
How to turn off cookies for a page?
Tell me the code snippet to show how we can return 404 errors from HttpError?
Which browsers support the xmlhttprequest object?
What is autopostback in asp net?