Get selected item, value and text from asp:RadioButtonList (VB.net) : Radio Button List « Asp Control « ASP.Net

ASP.Net
1. ADO.net Database
2. Asp Control
3. Collections
4. Components
5. Data Binding
6. Development
7. HTML Control
8. Mobile Control
9. Page
10. Request
11. Response
12. Server
13. Session Cookie
14. User Control and Master Page
15. Validation by Control
16. Validation by Function
17. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
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
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.Net » Asp Control » Radio Button List 
Get selected item, value and text from asp:RadioButtonList (VB.net)

<%@ Page Language=VB Debug=true %>
<script runat=server>
Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
    lblMessage.Text = "Selected Text: " _
        & rbl1.SelectedItem.Text & "<BR>Selected Value: " _
        & rbl1.SelectedItem.Value & "<BR>Selected Index: " _
        & rbl1.SelectedIndex       
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>Creating a Basic RadioButtonList Control</TITLE>
</HEAD>
<form runat="server">
<BR><BR>
<asp:Label
    id="lblMessage"
    runat="server"
/>
<BR><BR>
<asp:RadioButtonList 
    id="rbl1" 
    runat="server"
    cellpadding="5"
    cellspacing="5"
    repeatcolumns="3"
    repeatdirection="Vertical"
    repeatlayout="Table"
    textalign="Right"
>
    <asp:ListItem value="12">Blue</asp:ListItem>
    <asp:ListItem value="11">Red</asp:ListItem>
    <asp:ListItem value="2">Green</asp:ListItem>
    <asp:ListItem value="32">Purple</asp:ListItem>
    <asp:ListItem value="8">Black</asp:ListItem>
    <asp:ListItem value="15" Selected>Gold</asp:ListItem>
</asp:RadioButtonList>
<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. On radiobutton list changed (VB.net)
2. Setting and Retrieving the Selected Item in a RadioButton Control Group (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#)
www_.__jav__a___2___s___.___c_o_m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.