dennisGuru
Programmer
Hello,
I have a jsp page with several buttons.
<INPUT TYPE="submit" NAME="button_A" VALUE="Goto A">. I use these buttons to go to another page, depending on wich button is used.
In the servlet I retreive these with req.getParameter("button_A".
Once a button is clicked the value stays in the request/session. Is there a way to remove this. I have tried it with session.removeAttribute, but this doesn't work. Also setting the variables to null did not help.
Thanks in advance.
Dennis
I have a jsp page with several buttons.
<INPUT TYPE="submit" NAME="button_A" VALUE="Goto A">. I use these buttons to go to another page, depending on wich button is used.
In the servlet I retreive these with req.getParameter("button_A".
Once a button is clicked the value stays in the request/session. Is there a way to remove this. I have tried it with session.removeAttribute, but this doesn't work. Also setting the variables to null did not help.
Thanks in advance.
Dennis