2
Reply

what is the difference between Datalist and Gridview

shiv gupta

shiv gupta

13y
18.1k
0
Reply

    Please refer to the following link to know the basic differences between DataList and GridView,http://onlydifferencefaqs.blogspot.in/2012/08/aspnet-difference-faqs-6.html

    hi Shiv

    There are the following differences between Datagrid and Datalist:

    DataGrid:

    It will support default paing (through allow pageing property)

    It is performance very slow compare to Repeater and DataList.

    We can display the data either rowwise or columnwise, through Repeat Columns and repeat direction property

    Better to use list reports with Select, SORT, EDIT , Update, Delete and Cancel option

    DataList:

    Not support, but we can use paging concept through manual coding.

    It is performance very compare to Repeater

    We can display the data either rowwise or columnwise, through Repeat Columns and repeat direction property

    Better to display tabular columns

    http://www.c-sharpcorner.com/UploadFile/Blogs/1284/