Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/07/2008, 12:07
Avatar de gustavoh10
gustavoh10
 
Fecha de Ingreso: diciembre-2005
Ubicación: ARGENTINA
Mensajes: 196
Antigüedad: 18 años, 4 meses
Puntos: 3
Respuesta: capturar valor de un RadioButton

Hola, probaste utilizando el componente RadioButtonList ,
este es un pequeño ejemplo

Código PHP:
<asp:RadioButtonList ID="RadioButtonList1" runat="server">
    <
asp:ListItem Text="opcion1" Value="1" Selected="True"></asp:ListItem>
    <
asp:ListItem Text="opcion2" Value="2"></asp:ListItem>
    <
asp:ListItem Text="opcion3" Value="3"></asp:ListItem>
    </
asp:RadioButtonList
el valor lo recuperas con el siguiente codigo:
Código PHP:
RadioButtonList1.SelectedValue
espero que sirva, saludso!