Asp Control ASP.Net

<%@ Page Language=VB Debug=true %>

Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
    lblMessage.Text = "Selected Text: " _
        & rbl1.SelectedItem.Text & "
Selected Value: " _
        & rbl1.SelectedItem.Value & "
Selected Index: " _
        & rbl1.SelectedIndex       
End Sub



Creating a Basic RadioButtonList Control





    id="lblMessage"
    runat="server"
/>



    id="rbl1" 
    runat="server"
    cellpadding="5"
    cellspacing="5"
    repeatcolumns="3"
    repeatdirection="Vertical"
    repeatlayout="Table"
    textalign="Right"
>
    Blue
    Red
    Green
    Purple
    Black
    Gold




    id="butOK"
    text="OK"
    type="Submit"
    onclick="SubmitBtn_Click" 
    runat="server"
/>