Setting and Retrieving the Selected Item in a RadioButton Control Group (VB.net) : Radio Button List « Asp Control « ASP.Net

ASP.Net
1. ADO.net Database
2. Ajax
3. Asp Control
4. Collections
5. Components
6. Data Binding
7. Development
8. File Directory
9. HTML Control
10. Language Basics
11. Login Security
12. Mobile Control
13. Network
14. Page
15. Request
16. Response
17. Server
18. Session Cookie
19. Sitemap
20. Theme Style
21. User Control and Master Page
22. Validation by Control
23. Validation by Function
24. WebPart
25. WPF
26. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.Net » Asp Control » Radio Button List 
Setting and Retrieving the Selected Item in a RadioButton Control Group (VB.net)

<%@ Page Language=VB Debug=true %>
<script runat=server>
Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
    If Not IsPostBack Then
        rdoColorYellow.Checked = True
    End If
End Sub
Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
    Dim MyControl as Control
    Dim MyRadioButton as RadioButton
    For Each MyControl in frmMainForm.Controls
        If MyControl.GetType().FullName = "System.Web.UI.WebControls.RadioButton" Then
            MyRadioButton = MyControl
            If MyRadioButton.GroupName = "rgColors" then
                If MyRadioButton.Checked = "True" Then
                    lblColorSelected.Text = "You selected the color " _
                        & MyRadioButton.Text
                End If
            End If
        End If
    Next
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>Setting and Retrieving the Selected Item in a RadioButton Control Group</TITLE>
</HEAD>
<form
    id="frmMainForm"
    runat="server"
>
<BR><BR>
<asp:Label 
    id="lblColorSelected" 
    runat="server"
/>
<BR>
Select your favorite Color:<BR>
<asp:radiobutton 
    id="rdoColorBlue"
    text="Blue" 
    font-size="12pt"
    font-name="Comic Sans MS"
    groupname="rgColors"
    runat="server" 
/>
<BR>
<asp:radiobutton 
    id="rdoColorGreen"
    text="Green" 
    font-size="12pt"
    font-name="Comic Sans MS"
    groupname="rgColors"
    checked="True"
    textalign="Left"
    runat="server" 
/>
<BR>
<asp:radiobutton 
    id="rdoColorYellow"
    text="Yellow" 
    font-size="12pt"
    font-name="Comic Sans MS"
    groupname="rgColors"
    textalign="Right"
    runat="server" 
/>
<BR><BR>
<asp:button 
    id="butOK"
    text="OK"
    Type="Submit"
    OnClick="SubmitBtn_Click" 
    runat="server"
/>
</form>
</BODY>
</HTML>
           
       
Related examples in the same category
1. Get selected item, value and text from asp:RadioButtonList (VB.net)
2. On radiobutton list changed (VB.net)
3. Set asp:RadioButtonList Repeat Layout (VB.net)
4. Select case for asp:radiobuttonlist (VB.net)
5. Get selected item value from asp:radiobuttonlist (VB.net)
6. Get selected radio button from radio button list (C#)
7. select case statement for asp:radiobuttonlist (C#)
8. Get selected value from asp:radiobuttonlist (C#)
9. Add ListItem to RadioButtonList
10. RadioButtonList Control
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.