hola tengo un form con dos input tipo radio el cual cuando le doy dubmit me llama a un servlet
<input type='radio' name='OPC' value='abonar'>
<input type='radio' name='OPC' value='Descontarr'>
y las rescato en el servlet asi
public class Grabar extends HttpServlet
{
public void doGet(HttpServletRequest request, HttpServletResponse esponse)
throws IOException, ServletException
{
String p1=request.getParameter("OPC");
out.prinln(p1);
pero al imprimir p1 me da null, la pregunta es como lo hago para que p1 tenga el valor del radio que se presiono, o estoy asignando el valor mal y deberia ser un estilo asi??
String p1=request.getParameter("OPC[0]");
String p2=request.getParameter("OPC[1]");
pero de esta forma igual me da null en cualquiera de las dos variables.
alguien me guia
un poco??