> I have a generic action class that I want to set up that when the class is > successful it send the user back to the page from which they came. How do I > get that information? And, how would I structure my class to allow it to > send the user back?
We have the same propblem in our Application, and it can only be solved with a proper workflow mechanism. At the moment we use a session variable that has to be set before invoking an action, which stores the name of the page where we came from. Or we pass the name of the calling action as a parameter, so that we know where to get back. But this is all workarround, you need a workflow framework here. Volker -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

