Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/12/2004, 20:24
Avatar de hugo777
hugo777
 
Fecha de Ingreso: enero-2002
Ubicación: Lima, Perú
Mensajes: 757
Antigüedad: 22 años, 3 meses
Puntos: 1
Hola, pues que raro, a mi si me funciona:

1) Página JSP:

<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<html>
<head><title>JSP Page</title></head>
<body>

<form name="frmPrueba" action="procesa">
<input type="radio" name="OPC" value="abonar">Abonar
<input type="radio" name="OPC" value="descontar">Descontar
<br>
<input type=submit value="Enviar">
</form>
</body>
</html>


2) Código en el Servlet:
...
String var = (String)request.getParameter("OPC");

response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println("DATO: " + var);
out.close();
...


Espero te ayude,
__________________
Saludos,

H@C..