Hi,
I need to forward my request to another servlet.
The way you described will modify parameter value?
ActionType is my parameter...say it contains string value new...i want to update it to error string value.
pretty new to this ...hope i explained you clearly..
String ActionType = request.getParameter("ActionType");
// Looking for something where I can update my parameter
//ActionType...Basically I want to set to new value error.
RequestDispatcher rd =
request.getRequestDispatcher(
"/servlet/exampleServlet");
rd.forward(request,response)
Thank You.