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 |
'ASP.NET' 카테고리의 다른 글
asp.net core 5 - About MFA (0) | 2021.02.22 |
---|---|
SiteMap.CurrentNode Null Error (SiteMap.CurrentNode is null) (0) | 2021.01.11 |
VS Code에서 Razor 사용해보기 (0) | 2018.10.15 |
ASP.NET Webpages Webmail 보내다 오류 (0) | 2018.10.12 |
ASP.NET 한글 깨짐 (0) | 2018.08.10 |