How to alter parameter values in a Servlet
Hello,
I have an HTML file from which I pass several paramters to a servlet.
All my values are passed correctly and the correct beans/jsp's are subsequently called. What I want to be able to do from within the servlet is alter a parameter value which was originally passed from the HTML file.
i.e. The HTML file passes the parameter/value delegatebean = "Update" to the servlet. I can see this works by checking
request.getParameter("delegateto") in the servlet
If I then want to change the value to "Delete", from within the servlet, how can I do it?
Cheers
Mitch

