I would like to know more detailed about difference between
- Data List,
- Details View,
- Form View and
- List View.
And when we should use them in creating websites?
I would like to know more detailed about difference between
- Data List,
- Details View,
- Form View and
- List View.
And when we should use them in creating websites?
Details View
DetailView shows the details for the row in a separate space.
Tutorials
DetailsView Example in ASP.NET using C#
How to use DetailsView in asp.net
DataList
The DataList control is, like the Repeater control, used to display a repeated list of items that are bound to the control. However, the DataList control adds a table around the data items by default. The DataList control may be bound to a database table, an XML file, or another list of items.
Tutorials
Working with the DataList Control
Displaying Data with the DataList and Repeater Controls (C#)
ListView
The ASP.NET ListView control enables you to bind to data items that are returned from a data source and display them. You can display data in pages. You can display items individually, or you can group them.
Tutorial
Form View
Formview is intended for insert/update/view of a single record.
Tutorial
Happy reading :)