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 layout | Yes | Yes | No | Yes |
Table layout | No | No | Yes | No |
Style properties | No | Yes | Yes | Yes |
Column layout | No | Yes | No | No |
Paging | No | No | Yes | Yes |
Sorting | No | No | Yes | Yes |
Edit/Delete | No | No | Yes | Yes |
Insert | No | No | No | Yes |
Grouping | No | Yes | No | Yes |