Tagged Questions

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

learn more… | top users | synonyms

36
votes
4answers
17k views

How to find controls in a repeater header or footer

I was wondering how one would find the controls in the HeaderTemplate or FooterTemplate of an Asp.Net Repeater control. I can access them on the ItemDataBound event, but I was wondering how to get ...
13
votes
10answers
2k views

Why Repeaters in ASP.NET?

I'm a Ruby on Rails / PHP guy, and my company got me to work with ASP.NET. It's not too bad, I'm glad to learn a new language but since I started working with this technology everyone is bothering me ...
12
votes
5answers
13k views

Strange Error - CS0012: The type x is defined in an assembly that is not referenced

The type 'x' is defined in an assembly that is not referenced. You must add a reference to assembly 'abc123'. I have a .NET 2.0 web application that references my assembly 'abc123'. The assembly ...
10
votes
6answers
2k views

Repeater in Repeater

I have a repeater inside a repeater. Where the parent repeater is bound to a Datable which has a column with a Datatable in it. I would like to bind the child repeater to the datatable column in the ...
10
votes
3answers
5k views

Bind dictionary to repeater

I have a dictionary object <string, string> and would like to bind it to a repeater. However, I'm not sure what to put in the aspx markup to actually display the key-value pair. There are no ...
10
votes
6answers
6k views

ASP.NET repeater alternate row highlighting without full blown <alternatingitemtemplate/>

I'm trying to accomplish simply adding a css class to a div on alternate rows in my <itemtemplate/> without going to the overhead of including a full blown <alternatingitemtemplate/> which ...
9
votes
1answer
154 views

ASP.NET Repeater - Display Property List<T1> of Databound List<T>

I have a list of objects in C# I'm trying to bind to a Repeater. Here is a simplified example of my class: public class LineDetail { public int ClassID { get; set; } public IPerson Teacher { ...
9
votes
1answer
354 views

Adding value to list stored in session and then using as datasource for repeater

I have two repeaters on my page. The first repeater has a LinkButton in it, with a commandname and commandarguement. When the linkbutton is clicked the value of commandarguement is supposed to be ...
7
votes
9answers
24k views

Formatting DataBinder.Eval data

How can I format data coming from a DataBinder.Eval statement in an ASPX page? For example, I want to display the published date of the news items in a particular format in the homepage. I'm using ...
6
votes
1answer
882 views

Autocomplete jQuery on User Controller within Repeater .NET

I have a Multiview search feature on a Web User Controller that is called within a Repeater, OHMY!! I have some training sessions being listed out on a page, each calling an employeeSearch Web User ...
6
votes
4answers
17k views

How to find checked RadioButton inside Repeater Item?

I have a Repeater control on ASPX-page defined like this: <asp:Repeater ID="answerVariantRepeater" runat="server" onitemdatabound="answerVariantRepeater_ItemDataBound"> ...
5
votes
3answers
233 views

How to manage repeater with non fixed column number

I am using repeater to bind all table data. And My table fields are Name,Option1,Option2... Option12. All total 13 columns. values for Option columns are dynamic. some time it contains two values for ...
5
votes
3answers
628 views

asp.net: Iterating over multiple repeater.items collections

I have a number of idential repeaters, and I need to iterate through all of the items. I currently have: For Each item In rpt1.Items ...do some stuff Next For Each item In rpt2.Items ...
5
votes
3answers
787 views

How to use button in repeater control?

I am using asp.net 3.5 with c#.I want to invoke button click event inside repeater control. <asp:Repeater ID="rptFriendsList" runat="server" onitemcommand="rptFriendsList_ItemCommand"> ...
5
votes
4answers
855 views

How can I persist the data from a repeater after postback?

I have a repeater that displays financial data and prices for various stocks. On this page, I also have an "export" button that needs to take the data ~on the screen~ and convert it into a CSV for ...
5
votes
4answers
13k views

Can't find control within asp.net repeater?

I have the following repeater below and I am trying to find lblA in code behind and it fails. Below the markup are the attempts I have made: <asp:Repeater ID="rptDetails" runat="server"> ...
5
votes
3answers
5k views

Whats a good way to bind a repeater to a List<Person>?

If I have a List < Person > where person is defined by the class class Person { string Forename { get;set; } string Surname { get; set; } } And I bind it to an asp ...
5
votes
3answers
7k views

How do I access datasource fields in an ASP.net Repeaters ItemDataBound event?

I have a Repeater control that is being bound to the result of a Linq query. I want to get the value of one of the datasource's fields in the ItemDataBound event, but I'm not sure how to do this.
5
votes
4answers
4k views

Nested Repeaters and SqlDataSource Parameters

I am using nested repeaters to build a table for reasons I won't discuss here, but what I'm looking to do is have two datasources, one for the top level repeater that will correspond to the rows, and ...
5
votes
5answers
11k views

ASP.NET Repeater ItemDataBound happening AFTER PreRender event?

I have a repeater control on an ASP.NET 2.0 web form. As I understanding it, all of the page's data-bound controls fire their binding events somewhere in between the Page_Load and the Page_PreRender ...
5
votes
5answers
8k views

ASP.Net: why is my button's click/command events not binding/firing in a repeater?

Here's the code from the ascx that has the repeater: <asp:Repeater ID="ListOfEmails" runat="server" > <HeaderTemplate><h3>A sub-header:</h3></HeaderTemplate> ...
4
votes
3answers
73 views

Is there a similar way to AlternateItemTemplate to do this

Good day everyone, A nice easy one before the weekend for you all! I know that with a repeater I can use AlternatingItemTemplate and SeparatorTemplate to adopt a variety of alternating items or for ...
4
votes
2answers
111 views

how to bind inner repeater?

i have a repeater inside another repeater. now i want to bind the inner repeater. but i m getting error of "Object reference not set to an instance of an object.". my code is Protected Sub ...
4
votes
2answers
98 views

How to sanitize a query string when used with a databound repeater 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? <asp:SqlDataSource ...
4
votes
2answers
493 views

Paging in Repeater

Just like we have pagesize property in gridview that allows us to switch back and forth between pages, isn't there anyway i can incorporate the same functionality in a repeater. <table ...
4
votes
3answers
99 views

Why this event is fired?

I have a page with a repeater and a button. (quite simple) My repeater have an event rptEtats_ItemCreated raised OnItemCreated <asp:Repeater ID="rptEtats" runat="server" ...
4
votes
1answer
434 views

Default text for empty Repeater control

Using VS 2008, I have a Repeater control: <asp:Repeater runat="server" ID="storesRep" DataSourceID="storeSqlDataSource" OnItemDataBound="StoresRep_ItemDataBound"> <ItemTemplate> ...
4
votes
3answers
179 views

Is it possible to databind using an anonymous type?

I think that's the right terminology... Basically, I have a repeater control, and a Linq query that retrieves some items. Ordinarily I would databind straight to the query and use Eval to populate ...
4
votes
4answers
234 views

ASP.NET Repeater question

I have a repeater control and under the ItemTemplate, I have Image control. Anyway the old How can I set the ImageUrl programatically? Anyway, the old html code I have was like this: ...
4
votes
3answers
1k views

UpdatePanel, Repeater, DataBinding Problem

In a user control, I've got a Repeater inside of an UpdatePanel (which id displayed inside of a ModalPopupExtender. The Repeater is databound using an array list of MyDTO objects. There are two ...
4
votes
1answer
3k views

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 is named CustomCollection. So I'm setting the datasource of the ...
4
votes
3answers
4k views

Accessing Textboxes in Repeater Control

All the ways I can think to do this seem very hackish. What is the right way to do this, or at least most common? I am retrieving a set of images from a LINQ-to-SQL query and databinding it and some ...
4
votes
1answer
680 views

UserControl with Child Controls passed into a Repeater within the UserControl

I'm trying to achieve something along the lines of... UserControl (MyRepeater) <p>Control Start</p> <asp:Repeater id="myRepeater" runat="server" /> <p>Control ...
4
votes
4answers
165 views

LINQ connecting Many - Many relationships

I am using c#.net and LINQ Within my LINQ model I have three database tables: The code below is how I access the data: public IQueryable<tblAvailability> GetAvailabilitiesBySet(int id) ...
4
votes
4answers
3k views

asp.net radio button grouping

I am currently having an issue with radio buttons and grouping. I have an asp radio button within a repeater control. I have the group name attribute set to "Customer". When the page loads, the radio ...
4
votes
6answers
9k views

ASP.Net repeater Item Command not getting fired

OK, I've used repeaters literally hundreds of times without problems but something has gone awry today. I have a repeater and I'm subscribing to the itemCommand event, but when my command runs, the ...
4
votes
1answer
1k views

How do I bind an ASP.NET Repeater Control to an IList<String>?

I've never had to do this, but I'm binding a repeater to a generic list of Strings, and I'm not sure of the correct syntax. If I was binding to an IList and myType had a property LayerName I'd use ...
4
votes
4answers
2k views

Testing a Container.DataItem with inline code

I would like to do something like this in ASP.Net 2.0: <asp:Repeater id="myRepeater" runat="server"> <ItemTemplate> <% if (DataBinder.Eval(Container.DataItem, ...
4
votes
5answers
2k views

asp:repeater - headers at section change

is there any way to bring up a subheader row at changes in a field in an databound asp:repeater control e.g. Instead of country | colour | number uk | red | 3 uk | green | 3 france | red 3 Do ...
4
votes
3answers
3k views

Repeater's SeparatorTemplate with Eval

is it possible to use Eval or similar syntax in the SeparatorTemplate of a Repeater? Id' like to display some info of the last item in the separator template like this: <table> ...
3
votes
2answers
121 views

ASP.NET Repeater Control Not Working in FireFox

everyone: I have an ASP.NET Application that uses a Repeater control to display a thumbnail gallery. When the user mouses over one of the thumbnails, the main image will present that thumbnail. It ...
3
votes
4answers
51 views

How can I prevent duplication of the content in itemtamplate for the alternating template in repeater?

Is there a way to prevent duplication ot an itemtemplate content which will just appear with a different css class for the alternating template block? <asp:Repeater ID="rptCommentHistory" ...
3
votes
5answers
147 views

how to find repeater inside another repeater

I want to find repeater inside the another repeater. But i m not able to find. My code is <asp:Repeater ID="rep_test" runat="server"> <ItemTemplate> <div id='h<%# ...
3
votes
2answers
344 views

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 what to cast e.Item.DataItem as. The data source type could vary as this is reusable code in a ...
3
votes
4answers
438 views

ASP.NET C# Repeater - How to pass information back to server without Javascript?

I'm learning C# and working on my first ASP.Net e-commerce website. I have the following repeater: <asp:Repeater ID="Cartridges" runat="server" OnItemCommand="Cartridges_ItemCommand"> ...
3
votes
4answers
139 views

Nested repeater yields “malformed server tag”?

I'm trying to do a nested repeater as described here but it's erroring out. My repeater is as follows: <asp:Repeater ID="HouseholdRepeater" runat="server"> <ItemTemplate> ...
3
votes
3answers
449 views

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 the binding and code behind I need help with. I've only been able to find examples using an sql data ...
3
votes
4answers
166 views

Splitting list by Date property in C# or using jQuery

I have a List<Event> and an Event has a Date property. I'm currently binding this list to an asp:repeater which is fine and results in a list of event titles like this: event 1 event 2 event 3 ...
3
votes
1answer
844 views

Creating an ASP.NET Repeater Dynamically in C# Bound to an Object List

I've got a very simple object: public class DocumentType { private int id; private string name; public int ID { get { return this.id; } set { this.id = value; } } ...
3
votes
3answers
1k views

Hide Repeater columns based on user privileges

can somebody explain to me how to hide a repeater column based on the user privileges. Say I have: <asp:Repeater ID="repeater" runat="server> <HeaderTemplate> <table ...

1 2 3 4 5 18