Select case for 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
Microsoft Office Word 2007 Tutorial
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
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
ASP.Net » Asp Control » Radio Button List 
Select case for asp:radiobuttonlist (VB.net)

<script language="vb" runat="server">
Sub Page_Load()
  If Page.IsPostBack Then
    Select Case(Destination.SelectedItem.Value)
      Case "Barcelona":
        Message.Text = "Barcelona"
      Case "Oslo":
        Message.Text = "Oslo"
      Case "Lisbon"
        Message.Text = "Lisbon"
      Case else
        Message.Text = "you did not select a destination we travel to"
    End Select
  End If
End Sub
</script>

<html>
<head></head>
<body>
  <form runat="server">
  Select your choice of destination:
  <br><br>
  <asp:radiobuttonlist id="destination" runat="server">
    <asp:listitem>Barcelona</asp:listitem>
    <asp:listitem>Oslo</asp:listitem>
    <asp:listitem>Lisbon</asp:listitem>
  </asp:radiobuttonlist>
  <br><br>
  <input type="submit" value="Submit Choice">
  <br><br>
  <asp:label id="message" 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. Setting and Retrieving the Selected Item in a RadioButton Control Group (VB.net)
4. Set asp:RadioButtonList Repeat Layout (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#)
w_ww___._j___ava__2___s__.___co_m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.