select case statement for asp:radiobuttonlist (C#) : Radio Button List « Asp Control « ASP.Net






select case statement for asp:radiobuttonlist (C#)

<script language="C#" runat="server">
void Page_Load()
{
  if (Page.IsPostBack) {
    switch(Destination.SelectedItem.Value) 
    {
      case "Barcelona":
        Message.Text = "You selected Spain's lively Catalan city";
        break; 
      case "Oslo":
        Message.Text = "Experience the majesty of Norway's capital city";
        break; 
      case "Lisbon": 
        Message.Text = "Portugal's famous seaport and cultural hub";
        break; 
      default:
        Message.Text = "you did not select a destination we travel to";
        break; 
    }
  }
}
</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.Select case for asp:radiobuttonlist (VB.net)
6.Get selected item value from asp:radiobuttonlist (VB.net)
7.Get selected radio button from radio button list (C#)
8.Get selected value from asp:radiobuttonlist (C#)
9.Add ListItem to RadioButtonList
10.RadioButtonList Control