Click here to Skip to main content
15,880,796 members
Articles / Web Development / ASP.NET

The RIGHT Way to Use Checkboxes in a .NET Repeater!

Rate me:
Please Sign up or sign in to vote.
2.54/5 (12 votes)
9 Feb 2009CPOL3 min read 107K   19   22
How to generate checkboxes corresponding to items in a repeater, and how to retrieve their state on PostBack

Update

It's one year later. I've gained some architectural insight, and to those who've been critical of this approach, I see your point. That said, the code here does work properly -  it's just highly inelegant.

Introduction 

ASP.NET server controls are designed to allow for event-driven programming and stateful behavior in the inherently stateless environment of the web. This is a good thing as it frees the programmer from having to parse Forms and QueryStrings and instead allows the developer to address visual elements on the page (i.e. text fields, drop down lists, labels, etc.) the same way you would deal with elements in a desktop application. The result is a huge savings of time, a nearly complete separation of UI and code, and an application that is far easier to debug.

Unfortunately, many of these controls are buggy and/or have missing features. Most notably, the <asp:CheckBox> control.

A common scenario in web development involves a list of checkboxes next to a bunch of items in a form. After submission of the form, the checked items are dealt with in some way (i.e. multiple deletion of messages in Hotmail.) Due to limitations in the CheckBox server control and a lack of documentation surrounding the proper use of Repeaters, developers have historically dealt with this problem by using a client side CheckBox, JavaScript, and an old-school cross page form post.

Background

The problem is fundamentally this: server side CheckBox controls lack a "Value" attribute. Therefore, it is difficult to use them with dynamically generated lists of data in a Repeater, as there is no straightforward way to determine which checkboxes represent which data item after the form is posted back.

There have been many solutions posted on the web which involve re-evaluating each data item in the repeater after PostBack using a looping approach. This method is error prone (such as with forward only readers) as well as being inefficient. The method I present here instead retrieves the data only once, stores it in a hidden server control paired with the checkbox, and allows for quick and easy retrieval on PostBack.

The Example

The following snippets show a typical example where a customer list is displayed, with a checkbox next to each customer. After the user clicks a button, messages are sent only to the customers who they have checked off.

The Front-End Code

ASP.NET
<asp:Repeater id="customerList" runat="server">
<ItemTemplate>
   <%# Eval("name") %><br />  <!-- Their name -->
   <%# Eval("email") %><br /> <!-- Their email -->
   Send mailing list invite <asp:CheckBox id="selectUser" runat="server">
   <!-- Line below is key -->
   <asp:HiddenField ID="hiddenEmail" Value ='<%#Eval("email")%>'>
</ItemTemplate>
</asp:Repeater>

<asp:Button Text="Send Message" OnClick="DoSend" Runat="server" />

What we have done here is place an invisible server control, the asp:HiddenField, inside the Repeater template. Since this control DOES allow a value to be assigned to it, we can now determine which checkbox is linked to which row.

To retrieve the email addresses associated with the checked items after PostBack, we need only to use a simple loop, as follows:

The Code-Behind

C#
public void DoSend(object sender, EventArgs e)
{
    foreach (RepeaterItem i in customerList.Items)
       {                    
          //Retrieve the state of the CheckBox
          CheckBox cb = (CheckBox)i.FindControl("selectUser");
          if (cb.Checked)
          {
               //Retrieve the value associated with that CheckBox
               HiddenField hiddenEmail = (HiddenField)i.FindControl("hiddenEmail");

               //Now we can use that value to do whatever we want
               SendWelcomeMessage(hiddenEmail.Value);
          }
       }
} 

And that's all, folks! May the "I want to bang my head against the wall because I can't use a checkbox insider a repeater" phenomenon be but a distant memory.

Points of Interest

Microsoft has put a lot of work into its GridView control (for example, this particular problem is not an issue there) but really neglected its Repeater, which hasn't even changed significantly since ASP.NET 2.0.

Many coders choose the GridView over the Repeater partly for this reason. Repeaters are far more lightweight, and allow for full control over what is rendered. Hopefully this workaround will help to encourage its use.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader World Golf Tour
Canada Canada
Sam Rahimi currently leads the web team at World Golf Tour (www.wgt.com) and has an extensive background in ASP.NET, specializing in social networking and casual gaming.

Previously, he has worked for Roblox Corporation on their unique children's MMO as well as spending two years as team lead at Supernova.com, helping bring their social networking site into the modern era and doubling traffic along the way.

Sam started as a classic ASP engineer as a summer job 6 years ago to make some money to pay for tuition - to finish a degree in political science - and needless to say, never looked back. His experience has lead him to gain additional experience in the mobile space - J2ME, Android app developmentm, and SMS protocols.

And sure, the other engineers in SF may have an IPhone - Rahimi sticks with the EVO all the way!

Comments and Discussions

 
GeneralMy vote of 5 Pin
vishwajitg22-Aug-12 4:52
vishwajitg22-Aug-12 4:52 
QuestionGreat Post Pin
Kashif Hewitt4-May-12 7:10
Kashif Hewitt4-May-12 7:10 
AnswerI found an easier solution Pin
freecellwizard18-Jun-09 4:35
freecellwizard18-Jun-09 4:35 
GeneralRe: I found an easier solution Pin
freecellwizard18-Jun-09 4:43
freecellwizard18-Jun-09 4:43 
QuestionInheritance? Why? Pin
otijim12-May-09 5:58
otijim12-May-09 5:58 
Generalgood 1 Pin
ashu2chandra17-Jun-08 21:17
ashu2chandra17-Jun-08 21:17 
GeneralAnother option is... Pin
Rafael Nicoletti9-Apr-08 5:19
Rafael Nicoletti9-Apr-08 5:19 
GeneralRe: Another option is... Pin
Sam Rahimi9-Apr-08 6:55
Sam Rahimi9-Apr-08 6:55 
GeneralRe: Another option is... Pin
Rafael Nicoletti9-Apr-08 8:07
Rafael Nicoletti9-Apr-08 8:07 
QuestionInheritance? Pin
Rogic9-Apr-08 0:35
Rogic9-Apr-08 0:35 
Isn't it easier to inherit a Checkbox and add a 'Value' property?
AnswerRe: Inheritance? Pin
evolved9-Apr-08 2:24
evolved9-Apr-08 2:24 
GeneralRe: Inheritance? Pin
Sam Rahimi9-Apr-08 3:59
Sam Rahimi9-Apr-08 3:59 
GeneralRe: Inheritance? Pin
evolved9-Apr-08 6:51
evolved9-Apr-08 6:51 
GeneralRe: Inheritance? Pin
Sam Rahimi9-Apr-08 7:10
Sam Rahimi9-Apr-08 7:10 
GeneralRe: Inheritance? Pin
evolved9-Apr-08 7:22
evolved9-Apr-08 7:22 
RantRe: Inheritance? Pin
Rafael Nicoletti9-Apr-08 8:15
Rafael Nicoletti9-Apr-08 8:15 
GeneralRe: Inheritance? Pin
Sam Rahimi9-Apr-08 11:18
Sam Rahimi9-Apr-08 11:18 
GeneralRe: Inheritance? Pin
Rafael Nicoletti9-Apr-08 14:34
Rafael Nicoletti9-Apr-08 14:34 
GeneralRe: Inheritance? Pin
evolved11-Apr-08 6:03
evolved11-Apr-08 6:03 
GeneralRe: Inheritance? Pin
Anthony Missico10-Nov-08 8:22
Anthony Missico10-Nov-08 8:22 
GeneralRepeater and late binding Pin
rippo8-Apr-08 19:33
rippo8-Apr-08 19:33 
GeneralRe: Repeater and late binding Pin
Sam Rahimi9-Apr-08 4:00
Sam Rahimi9-Apr-08 4:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.