2002. december 3. 10:01 dátummal Marcus Biel ezt írtad:
> No, my problem is different!

No. Your problem is the same.

> Now if I add a cancel button, it works,
> but also forwards to this same page,
> instead of to the regular start page.

If you add a cancel button, you can handle the cancel event by checking 
isCancelled(request) so you can decide where forward to. 
Simplified:

if (isCancelled(request)) 
        return mapping.findForward("cancel");

And define a forward named 'cancel'. If you do so you will be forwarded to 
this page. 

Tib

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

Reply via email to