Hi jsp guru,
I'm trying to submit a form with some query strings, using method GET. The request.getParameter part work just fine but all the query stings before it are gone. I have something like this:
<form method="GET" action=" on....¶mn=<%=request.getParameter("CurrDate")%>">
If I use POST then I got all the param but CurrDate = null.
I think if I put the values of the params in the form fields and use getParameter for them all, it will do it.
My question is why the other params are gone?
Thanks
I'm trying to submit a form with some query strings, using method GET. The request.getParameter part work just fine but all the query stings before it are gone. I have something like this:
<form method="GET" action=" on....¶mn=<%=request.getParameter("CurrDate")%>">
If I use POST then I got all the param but CurrDate = null.
I think if I put the values of the params in the form fields and use getParameter for them all, it will do it.
My question is why the other params are gone?
Thanks