simon wrote:
> 
> It seems to be working fine for everyone else so it's probably not a JDK version 
>problem.
> 
> What happens it you add another parameter:
> 
>  <html>
>     <head>
>        <title> Prova </title>
>     </head>
>    <body>
>       <%
>            out.println("<b>Ciao: " + request.getParameter("user") + "</b>");
>            out.println("<b>Ciao: " + request.getParameter("hogehoge") + "</b>");
>            out.println("<b><br>Ciao: " + request.getMethod() + "</b>");
>       %>
>   </body>
>  </html>
> 
> prova.jsp?user=pippo&hogehoge=dinkum
> 
> ??
> 


Ciao: null Ciao: null
Ciao: GET

I made several  examples test  with different names for the parameters,
but the problem was the same.

Michele

Reply via email to