What are the advantages of using listview over gridview? I need pagination, editing rows, inserting and deleting rows in my view. Which is the best control for that? Seems like Data pager is not supported on gridview... I would like to know what all I would miss if I migrate my gridviews to listviews.
|
2
|
|
|
|
|
|
GridView supports:
ListView supports:
The reason to use ListView would be if you need some special layout, for example, to create a table that places more than one item in the same row, or to break free from table-based rendering altogether) - which is not possible with GridView. Using GridView on the other hand is easier and faster, so unless you need special layout to display your data, use GridView. |
|||
|
|
|
|
ListView gives you more control over resulting HTML markup. |
||
|
|
|
|
Its realy depend/requirement on the scenario which control to be use |
||
|
|
|
|
Gridview is the best option. You are able to do all of the things you mentioned much easier than anyother control. A listview is derived from a ListBox The ListView control supports the following features:
The GridView control is used to display the values of a data source in a table. Each column represents a field, while each row represents a record. The GridView control supports the following features:
|
||
|
|
|
|
This article is particularly useful for a comparison. For me it is the raw flexibility of the HTML you can render. In a project I was developing I was using a GridView but replaced with the ListView as I wanted very specific paging requirements that couldn't be provided by the GridView. I could of used a 3rd party gridview to provide the paging requirements, but I wanted to minimise the reliance of 3rd party code. The ListView alone in my opinion is a good reason for moving from ASP.NET 2.0 to 3.5. |
||
|
|
