Asp Control ASP.Net

<%@ Page Language="C#" %>

    protected void RadioButton_CheckedChanged(object sender, EventArgs e)
    {
        RadioButton selectedRadioButton = (RadioButton)sender;
        lblResult.Text = selectedRadioButton.Text;
    }



    RadioButton AutoPostBack


    
    

    
    How did you hear about our Website?
    
    

            

  •                     id="rdlMagazine"
                Text="Magazine Article"
                GroupName="Source"
                AutoPostBack="true"
                OnCheckedChanged="RadioButton_CheckedChanged"
                Runat="server" />
            

  •         

  •                     id="rdlTelevision"
                Text="Television Program"
                GroupName="Source"
                AutoPostBack="true"
                OnCheckedChanged="RadioButton_CheckedChanged"
                Runat="server" />
            

  •         

  •                     id="rdlOther"
                Text="Other Source"
                GroupName="Source"
                AutoPostBack="true"
                OnCheckedChanged="RadioButton_CheckedChanged"
                Runat="server" />
            

  •     

    
    
            id="lblResult"
        Runat="server" />