ASP.NET

Reapeater, DataList, GridView, ListView 차이점

littlemk 2019. 1. 11. 16:35

Table comparison of Repeater, DataList, GridView and ListView control and Explain

  • Gridview - Limited in design, works like an html table. More in built functionality like edit/update, page, sort. Lots of overhead.

  • DataGrid - Old version of the Gridview. A gridview is a super datagrid.

  • Datalist - more customisable version of the Gridview. Also has some overhead. More manual work as you have to design it yourself.

  • ListView - the new Datalist :). Almost a hybrid of the datalist and gridview where you can use paging and build in Gridview like functionality, but have the freedom of design. One of the new controls in this family

  • Repeater - Very light weight. No built in functionality like Headers, Footers. Has the least overhead.



Repeater DataList GridView ListView
Flow layoutYesYesNoYes
Table layoutNoNoYesNo
Style propertiesNoYesYesYes
Column layoutNoYesNoNo
PagingNoNoYesYes
SortingNoNoYesYes
Edit/DeleteNoNoYesYes
InsertNoNoNoYes
GroupingNoYesNoYes