On radiobutton list changed (VB.net) : Radio Button List « Asp Control « ASP.Net






On radiobutton list changed (VB.net)

<%@ Page Language=VB Debug=true %>
<script runat=server>
Sub rbl_Changed(Sender As Object, E As EventArgs)
    Dim TheAlert as String
    TheAlert = "<SCRIPT LANGUAGE=""JavaScript"">" & Chr(13) _
        & "<!--" & Chr(13) & "alert(""You selected the color: " _
        & rbl1.SelectedItem.Text & """)" & Chr(13) _
        & "--><" & "/" & "SCRIPT>"
    Response.Write(TheAlert)
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>Writing Code that Fires When an Item is Selected in a RadioButtonList Control</TITLE>
</HEAD>
<form runat="server">
<BR><BR>
<asp:RadioButtonList 
    id="rbl1" 
    runat="server"
    autopostback="True"
    onselectedindexchanged="rbl_Changed"
>
    <asp:ListItem value="12">Blue</asp:ListItem>
    <asp:ListItem value="11">Red</asp:ListItem>
    <asp:ListItem value="2">Green</asp:ListItem>
</asp:RadioButtonList>
<BR><BR>

</form>
</BODY>
</HTML>
           
       








Related examples in the same category

1.Get selected item, value and text from asp:RadioButtonList (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#)
9.Add ListItem to RadioButtonList
10.RadioButtonList Control