Asp Control ASP.Net

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

Sub rgShipping_Clicked(Sender As Object, E As EventArgs)
    If rdoUPS.Checked = True Then
        Session("ShippingMethod") = "UPS"
    ElseIf rdoUSPS.Checked = True Then
        Session("ShippingMethod") = "USPS"
    Else
        Session("ShippingMethod") = "FedEx"
    End If
    lblShipSelected.Text = Session("ShippingMethod")
End Sub



Writing Code that Fires when Selection Changes





    id="lblShipSelected" 
    runat="server"
/>


Select Shipping Type:


    id="rdoUPS"
    text="UPS" 
    autopostback="True"
    oncheckedchanged="rgShipping_Clicked"
    groupname="rgShipping"
    runat="server" 
/>


    id="rdoUSPS"
    text="United States Postal Service" 
    autopostback="True"
    oncheckedchanged="rgShipping_Clicked"
    groupname="rgShipping"
    runat="server" 
/>


    id="rdoFedEx"
    text="FedEx" 
    autopostback="True"
    oncheckedchanged="rgShipping_Clicked"
    groupname="rgShipping"
    runat="server" 
/>