Introduction
Here I will explain you, what is Repeater Control and nhow to use this control to bind data in Asp.Net.
Description
The Repeater control in ASP.NET is a data-bound container control that can be used to automate the display of a collection of repeated list items. These items can be bound to either of the following data sources:
However, the Repeater control by itself does not support paging or editing of data. The Repeater control is light weight and does not contain so many features as the DataGrid contains. However, it enables you to place HTML code in its templates. It is great in situations where you need to display the data quickly and format the data to be displayed easily.....[Continue]
Here I will explain you, what is Repeater Control and nhow to use this control to bind data in Asp.Net.
Description
The Repeater control in ASP.NET is a data-bound container control that can be used to automate the display of a collection of repeated list items. These items can be bound to either of the following data sources:
- Database Table
- XML File
instance. Once this is set, the data from one of these types of data
sources can be easily bound to the Repeater control using its DataBind()
method.However, the Repeater control by itself does not support paging or editing of data. The Repeater control is light weight and does not contain so many features as the DataGrid contains. However, it enables you to place HTML code in its templates. It is great in situations where you need to display the data quickly and format the data to be displayed easily.....[Continue]