What is the use of name attribute in the Action Mapping for struts built in ActionForward.
If I have a mapping as below <action path="/login" type="org.apache.struts.actions.ForwardAction" input="/login.jsp" parameter="/login.jsp" name="LoginForm" scope="session"> </action>
will the form be available to the login.jsp so that I can use reset() method of the action form to pre populate some data in login.jsp?