On 8/15/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Hi,
>
>     <action
>       path="/secure/dataChecks"
>       name="emptyForm"
>       type="org.springframework.web.struts.DelegatingActionProxy"
>       input="/secure/dataChecks.jsp" />
>
> So here it is only possible to return to the given input JSP 
> "dataChecks.jsp". How can I return to the calling JSP without defining one 
> action tag for every single JSP?

If you don't close your actionmapping right away you can put <forward>
tags in which you can define diffrent places to go.

<action ...>
   <forward.../>
</action>

In your action class you can look for request params to decde which way to go.

http://struts.apache.org/1.3.8/userGuide/building_controller.html#config

for more info.

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

Reply via email to