Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Basics
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 17th, 2008, 02:02 AM
Registered User
 
Join Date: Feb 2008
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Radio button and Repeater control

Hello,

I am trying to create 3 radio buttons inside the repeater control for 3 possible options where each option has 3 radio button to choose from using following syntax:

<asp:Repeater ID="rptrRoles" runat="server" OnItemDataBound="rptrRoles_ItemDataBound" >

<ItemTemplate>

<asp:RadioButton ID="" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Description") %>' GroupName="SiteRoles" /><br />


<asp:TextBox ID="txtSID" runat="server" Visible="false" />

<asp:TextBox ID="txtRoleID" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "RoleID") %>' Visible="false" />

</ItemTemplate>


</asp:Repeater>

But, I am having this isue that user can select all the radio buttons for the options at the same time. However, I only want the user to select only 1 radio button for each option.

Please help.

Thanks in advance for all your help.


A. Patel
 
Old June 19th, 2008, 11:43 AM
rlb rlb is offline
Authorized User
 
Join Date: Jan 2007
Posts: 18
Thanks: 0
Thanked 0 Times in 0 Posts
Default

You can do it that way, but you're going to need to create/call a method that unselects all other radiobuttons except the one just clicked.

Sounds like you might appreciate a radiobuttonlist ?





Similar Threads
Thread Thread Starter Forum Replies Last Post
radio button anwarraja Javascript 3 September 18th, 2007 08:18 PM
Radio button Jolley_tolson Javascript 2 July 15th, 2007 05:50 AM
User Control inherited from Radio Button spiffycrony VS.NET 2002/2003 1 November 2nd, 2006 06:00 PM
Radio Button hoailing22 ASP.NET 1.0 and 1.1 Basics 1 June 2nd, 2005 12:08 AM
Button acts depending on radio button values janise Access 4 March 10th, 2004 12:53 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.