Top "Repeater" questions

The Repeater control is used to display a repeated list of items that are bound to the control.

Why is e.Item.DataItem null on ItemDataBound event when binding an asp:net Repeater to a Collection?

I'm trying to bind a collection implementing the ICollection, IEnumerable and IList interface to an asp.net repeater. The Collection …

c# asp.net repeater
How to dynamically set control IDs inside a repeater template?

Here is a perplexing issue I have not seen a good answer to on StackOverflow, although there a couple stabs …

asp.net repeater
Equivalent of Eval("field") in ASP.NET Repeater ItemDataBound event?

I want to do the equivalent of Eval("field") in an ASP.NET repeater ItemDataBound Event but am not sure …

asp.net repeater
Setting MyLabel.Text in Repeater's HeaderTemplate

Every sample I've found of doing this consists of writing a function outside of my page's OnLoad in order to …

asp.net repeater web-controls
C# Pass textbox content via CommandArgument in Repeater

<asp:Repeater ID="Cartridges" runat="server" onitemcommand="Cartridges_ItemCommand"> <ItemTemplate> <p class="cartprice"><%#…

c# asp.net repeater commandargument
asp.net: How to find repeater div in backend?

I use repeater to display records fetching from database, especially I use div tag to display html content stored in …

asp.net repeater
Paging in Repeater

Just like we have pagesize property in gridview that allows us to switch back and forth between pages, isn't there …

c# asp.net gridview repeater
How to nest repeaters in asp.net

I need to know how to nest repeaters within a user control. The html side of things is fine, it's …

c# asp.net data-binding repeater
bind and pass 2 values commandArgument and hidden field, ERROR

Using a repeater to display a list,(with 'remove' btn beside each record) click 'remove' and it removes from the …

asp.net repeater hidden-field commandargument
Maintaining viewstate of a repeater

I have a problem whereby the viewstate of a repeater i.e. the controls within the repeater are not maintaing …

c# asp.net repeater viewstate asprepeater