Error: \'Repeater\' does not contain a definition for \'DataSource\' and no extension method \'DataSource\' accepting a first argument of type \'Repeater\' could be found (are you missing a using dir
I need to insert a user control into a repeater <asp:Repeater runat=\"server\" ID=\"rptAdditionalPages\">
I have a repeater with a checkbox in the item template. During itemdatabound event of the repeater I add an attribute to the checkbox
In my c# code, I have a constant: SITE_NAME = \"my site\"; I have a repeater control, and inside the itemtemplate I have a input control:
Given the following URL: domain.com/page.aspx?id=123 How can I sanitize that query string value when it is used on a Databound Control such as a repeaters SqlDataSource?
I have nested repeaters on my aspx page.In the outer repeater I am displaying a list of products and in the inner repeater I am displaying a list of additional options associated with each product.The
Is there a repeater component which would append more items through ajax when scrolled down, but would not keep all items in model? Something like facebook does when you click \"More\".
I have a repeater with an ItemTemplate contains a CheckBox, TextBox My repeater represents a check list plus a TextBox to put a comment to each item I select from the list.
In my repeater I have the following markup: <asp:Repeater runat=\"server\" id=\"TeamsRepeater\" OnItemDataBound=\"TeamsRepeater_ItemDataBound\" ClientIDMode=\"Predictable\">
I have a shopping cart that I am developing as a web user control. ucCart.ascx will appear on three different pages and I want the functionality of the cart to alter depending on which page it appears