Login or Sign Up
Logging in...
Remember me
Log in
Or
Sign Up
Forgot password or user name?
Log in with
Search in titles only
Search in .NET only
Search
Advanced Search
Forums
Product Launch
Updates
Today's Posts
Member List
Calendar
Home
Forum
Topic
.NET
option buton
Collapse
X
Collapse
Posts
Latest Activity
Photos
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
shalini166
New Member
Join Date:
Apr 2008
Posts:
70
#1
option buton
Apr 17 '08, 11:38 AM
I have three option button.how to choose one at a time.
if i select option1, then i select option2 two of them selected.
pls help me
balame2004
New Member
Join Date:
Mar 2008
Posts:
142
#2
Apr 17 '08, 12:45 PM
Originally posted by
shalini166
I have three option button.how to choose one at a time.
if i select option1, then i select option2 two of them selected.
pls help me
I think you are using check boxes so the user can select more than one button at a time.
Use radio buttons to let user to select only one button at a time.
Comment
Post
Cancel
balame2004
New Member
Join Date:
Mar 2008
Posts:
142
#3
Apr 17 '08, 12:47 PM
Originally posted by
balame2004
I think you are using check boxes so the user can select more than one button at a time.
Use radio buttons to let user to select only one button at a time.
If you are using radio buttons set same group name for all those three buttons.
Comment
Post
Cancel
Curtis Rutland
Recognized Expert
Specialist
Join Date:
Apr 2008
Posts:
3264
#4
Apr 17 '08, 01:35 PM
Originally posted by
balame2004
If you are using radio buttons set same group name for all those three buttons.
Or, you could use the RadioButtonList .
[code=html]
<asp:RadioButto nList ID="rbl1" runat="server">
<asp:ListItem Text="Option 1" Value="1" />
<asp:ListItem Text="Option 2" Value="2" />
<asp:ListItem Text="Option 3" Value="3" />
</asp:RadioButton List>
[/code]
Comment
Post
Cancel
Previous
template
Next
Working...
Yes
No
OK
OK
Cancel
👍
👎
☕
Comment