hello,

is there a difference between :

response.sendRedirect("/test.do");
return null;

&

return (mapping.findForward("test"));
with the action mapping in struts-config.xml :
       <action
           input="/any.jsp"
           name="AnyForm"
           path="/anything"
           type="com.test.AnyAction">
           <forward name="test" path="/test.do" redirect="true" />
   </action>

both goes to /test.do but is there any difference if i specify redirect="true" in forward mapping, & if i do the old way (response.sendRedirect)




--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to