There is NO mechanism available in Servlet specifications to remove a parameter from the request object. The only way you can go about this is to set the parameter as a request attribute in the calling JSP and then remove it in your struts action. Don't have the value set as a form component but store it directly as an attribute in the impicit request objcet in the JSP.
setAttribute(java.lang.Str
removeAttribute(java.lang.
Main Topics
Browse All Topics





by: CEHJPosted on 2009-08-05 at 05:11:51ID: 25022444
Why would you need to remove it?