Editorial / Best Answer
spandanapotla
Adv: the DataList's display is defined via templates,DataList allows for much more customization of the rendered HTML markup , by which it is more user-friendly displays of data.
DisAdv:
adding such functionality with the DataList takes more development time than with the DataGrid, as
- The Edit/Update/Cancel buttons that can be created in a DataGrid via the EditCommandColumn column type, must be manually added to the DataList, and
- The DataGrid BoundColumn column types automatically use a TextBox Web control for the editing interface, whereas with the DataList you must explicitly specify the editing interface for the item being edited via the EditItemTemplate.
What are the advantages and disadvantages of using datalist ?
Profile Answers by madhureddy318 Questions by madhureddy318
Questions by madhureddy318
Editorial / Best Answer
spandanapotlaProfile Answers by spandanapotla Questions by spandanapotla
Adv: the DataList's display is defined via templates,DataList allows for much more customization of the rendered HTML markup , by which it is more user-friendly displays of data.
DisAdv:
adding such functionality with the DataList takes more development time than with the DataGrid, as
Related Answered Questions
Related Open Questions