The Repeater control is used to display a repeated list of items that are bound to the control. The Repeater control may be bound to a database table, an XML file, or another list of items. Repeater is a Data Bind Control. Data Bind Controls are container controls. Data Binding is the process of creating a link between the data source and the presentation UI to display the data. ASP .Net provides rich and wide variety of controls, which can be bound to the data. Repeater has 5 inline template to format it:1. <HeaderTemplate>2. <FooterTemplate>3. <ItemTemplate> 4. <AlternatingItemTemplate>5. <SeperatorTemplate>6. <AlternatingItemTemplate> HeaderTemplate: This template is used for elements that you want to render once before your ItemTemplate section.FooterTemplate: - This template is used for elements that you want to render once after your ItemTemplate section.ItemTemplate: This template is used for elements that are rendered once per row of data. It is used to display recordsAlternatingItemTemplate: This template is used for elements that are rendered every second row of data. This allows you to alternate background colors. It works on even number of records only.SeperatorTemplate: It is used for elements to render between each row, such as line breaks.Some point about Repeater Control
Repeater Controls in ASP.NET
Validation Controls in ASP.NET
Thank you for this useful article
It is really very useful for me.
9W V 215 153 9W H 245 153 9W K 285 153 9W V 301 153 9W S 328 153 9W H 331 153My data is displaying like this but i need to display like only one time 9w and all classes are present n horizantol manner.
mark