Click here to Skip to main content
15,878,953 members
Articles / Web Development / ASP.NET
Article

RadioButtons inside a GridView control

Rate me:
Please Sign up or sign in to vote.
4.48/5 (48 votes)
13 Feb 20062 min read 305.5K   58   37
In this article, we will see how to use RadioButtons inside a GridView control and retrieve the values associated with them.

Introduction

In one of my articles, I discussed about how you to get the values of the selected checkboxes that are inside a GridView control. In this article, I will show you how you can use RadioButtons inside a GridView control.

Big deal about radio buttons

You must be wondering what is the big deal about it since I can simply place a RadioButton server control inside a GridView and retrieve the value of the selected row just like I did for checkboxes. Well, RadioButtons are different since you can select only one of them at a time. Then you must be thinking, so what if I give the name to the RadioButtons and won't that take care of the problem. Not exactly, since GridView is rendered as several rows and each row has an ID. Now, if RadioButtons are rendered inside a GridView control then the GridView control will assign them a name at runtime which will be different.

The effect will be that you will be able to select multiple RadioButtons. So, lets see in this article how we can solve this problem.

You should also check out "Selecting multiple checkboxes inside a GridView control".

Using the HTML RadioButton

The solution is pretty simple. Just use HTML radio buttons instead of RadioButton server controls. Let's see how this is done. First of all, you need to add a template column in the GridView control which will contain the radio button.

HTML
<asp:GridView ID="GridView1" runat="server" 
        AutoGenerateColumns="False" BackColor="White"
        BorderColor="#CC9966" BorderStyle="None" 
        BorderWidth="1px" CellPadding="4" Font-Names="Verdana">
  <FooterStyle BackColor="#FFFFCC" ForeColor="#330099" />
  <Columns>
      <asp:BoundField DataField="CategoryID" HeaderText="CategoryID" />
      <asp:BoundField DataField="CategoryName" HeaderText="CategoryName" />
      <asp:BoundField DataField="Description" HeaderText="Description" />
      <asp:TemplateField HeaderText="Select One">
        <ItemTemplate>
          <input name="MyRadioButton" type="radio" 
                    value='<%# Eval("CategoryID") %>' />
        </ItemTemplate>
      </asp:TemplateField>
  </Columns>
  <RowStyle BackColor="White" ForeColor="#330099" />
  <SelectedRowStyle BackColor="#FFCC66" 
          Font-Bold="True" ForeColor="#663399" />
  <PagerStyle BackColor="#FFFFCC" 
          ForeColor="#330099" HorizontalAlign="Center" />
  <HeaderStyle BackColor="#990000" 
          Font-Bold="True" ForeColor="#FFFFCC" />
</asp:GridView>

I have made the template column bold so it will be easier for you to identify. I have given the name "MyRadioButton" to the HTML radio button. Since, I want the primary key of the row when the radio button is checked, I have bound it to the value of the CategoryID field.

Let's see a picture so that you know what is going on:

Image 1

As you can also see, there is a Button control on the form. Now, when I press the button I want to get the CategoryID of the row whose radio button is checked. This is pretty easy, check out the code below:

C#
protected void Button1_Click(object sender, EventArgs e)
{
  string selectedValue = Request.Form["MyRadioButton"];
  lblMsg.Text = selectedValue;
}

Request.Form takes the name of the control, in this case "MyRadioButton", and returns the value back to the variable.

I hope you liked this article, happy coding!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
My name is Mohammad Azam and I have been developing iOS applications since 2010. I have worked as a lead mobile developer for VALIC, AIG, Schlumberger, Baker Hughes, Blinds.com and The Home Depot. I have also published tons of my own apps to the App Store and even got featured by Apple for my app, Vegetable Tree. I highly recommend that you check out my portfolio. At present I am working as a lead instructor at DigitalCrafts.




I also have a lot of Udemy courses which you can check out at the following link:
Mohammad Azam Udemy Courses

Comments and Discussions

 
QuestionDisabling a radiobutton selection Pin
Dan Roma14-Jan-14 5:11
Dan Roma14-Jan-14 5:11 
GeneralMy vote of 2 Pin
Sravan S5-Aug-13 18:58
Sravan S5-Aug-13 18:58 
GeneralMy vote of 4 Pin
Alireza_136210-Apr-13 17:27
Alireza_136210-Apr-13 17:27 
GeneralMy vote of 5 Pin
lk.934620-Mar-13 23:06
lk.934620-Mar-13 23:06 
QuestionCode for Vb,Net Pin
Priyanka Jain22-Aug-12 20:07
Priyanka Jain22-Aug-12 20:07 
GeneralMy vote of 5 Pin
Đăng Đau Đớn5-Aug-12 9:33
Đăng Đau Đớn5-Aug-12 9:33 
QuestionHow do i get the Row Index that I selected? Pin
Franco Cipriano30-May-12 9:59
Franco Cipriano30-May-12 9:59 
AnswerRe: How do i get the Row Index that I selected? Pin
Andres Cichero31-May-12 11:41
Andres Cichero31-May-12 11:41 
QuestionAdd Panel Pin
Elham M2-Sep-11 23:09
Elham M2-Sep-11 23:09 
GeneralMy vote of 4 Pin
Syed Wajahat23-Feb-11 3:41
Syed Wajahat23-Feb-11 3:41 
GeneralHope it doesn't work Pin
mohanjune198713-Sep-10 16:13
mohanjune198713-Sep-10 16:13 
GeneralGetRowIndex method Pin
Lufty88984-Apr-10 14:52
Lufty88984-Apr-10 14:52 
GeneralMy vote is: poor.... Pin
Member 30736892-Jan-09 9:02
Member 30736892-Jan-09 9:02 
GeneralMy vote of 1 Pin
Member 30736892-Jan-09 9:00
Member 30736892-Jan-09 9:00 
GeneralMy vote of 2 Pin
Geoffrey Morton-Haworth14-Dec-08 6:13
Geoffrey Morton-Haworth14-Dec-08 6:13 
GeneralUsing a literal is a better approach Pin
Geoffrey Morton-Haworth13-Dec-08 6:32
Geoffrey Morton-Haworth13-Dec-08 6:32 
GeneralRe: Using a literal is a better approach Pin
azamsharp13-Dec-08 13:40
azamsharp13-Dec-08 13:40 
GeneralRe: Using a literal is a better approach Pin
Geoffrey Morton-Haworth14-Dec-08 6:06
Geoffrey Morton-Haworth14-Dec-08 6:06 
GeneralAnother workaround... Pin
Smuus26-Nov-08 6:12
Smuus26-Nov-08 6:12 
QuestionQuestion Pin
haricosmo21-Aug-08 6:54
haricosmo21-Aug-08 6:54 
GeneralQuery Pin
Member 174326212-Dec-07 0:40
Member 174326212-Dec-07 0:40 
Generalmaintain the state of clientside radiobutton Pin
Member 409133810-Dec-07 20:30
Member 409133810-Dec-07 20:30 
GeneralGood Pin
vp200030-Nov-07 15:56
vp200030-Nov-07 15:56 
GeneralAnother way Pin
ReticulatingSplines14-Sep-07 5:01
ReticulatingSplines14-Sep-07 5:01 
QuestionHow Can I get the checked property of the radioButtons from a gridView Pin
Member 381065813-Feb-07 9:38
Member 381065813-Feb-07 9:38 

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.