Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/08/2008, 15:11
Bunburyscom
Usuario no validado
 
Fecha de Ingreso: junio-2008
Mensajes: 386
Antigüedad: 16 años, 6 meses
Puntos: 10
Respuesta: No me reconoce el request

Hola tote87,

Intentalo asi:

<%!
public class comparativa{
private boolean comprobado(String select[], String comparado){
boolean enc=false;
for(int i=0; i<select.length && !enc; i++)
if(select[i].equals(comparado)) enc= true;
return enc;
}
public boolean isParsableToInt(String i){
try
{
Integer.parseInt(I);
return true;
}
catch(NumberFormatException numberFormatException nfe)
{
return false;
}
}
}
%>

<%
String select[] = request.getParameterValues("select");

String nombre = request.getParameter("nombre");
String apellido1 = request.getParameter("apellido1");
String apellido2 = request.getParameter("apellido2");
String dia = request.getParameter("dia");
String mes = request.getParameter("mes");

%>


saludos!