Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/01/2015, 18:30
chachek
 
Fecha de Ingreso: abril-2008
Mensajes: 25
Antigüedad: 16 años, 1 mes
Puntos: 0
Respuesta: recuperar valor grupo de opcion

Prueba este form:
<form name="form" method="post" action="ppptpv.asp">
<input name="ImporteRadio" type="radio" value="1" id="Importe_1">1;
<input name="ImporteRadio" type="radio" value="2" id="Importe_2">2;
<input name="ImporteRadio" type="radio" value="3" id="Importe_3">3;
<input type="radio" id="Importe_4">OTRA CANTIDAD
<input name="ImporteTexto" size="10" type="text" id="Importe_4_2">

<INPUT id="boton" name="enviar" TYPE="submit" VALUE="Colaborar">
</form>

Estas llamando a todas las variables "Importe" si quieres diferenciar las variables cambia el name del imput del type text.

no conozo .asp pero en php accederías al valor que pasas por el imput type text con $_POST['ImporteTexto']

Prueba