Well, my newbieness to cocoon continues as does my
frustration. Anyway, another burning question.
I have a series of forms with pseudo code such as
if (user invokes edit) {
open edit form;
on submit of form {
attempt to execute
change.
if (attempt succeeds) route to
view page.
else route to error page with
the given error message from the attempt.
}
}
Both the error page and the pages beign routed to
are usign custom made generators. What I dont know how to do is to do the
routing. I can always invoke one generator to process the command and return an
error page if the command doesnt work. However, if the command doesnt work Id
like the generator to cause a redirect that forwards the user's browser to
another url. How in the world can I accomplish this? Im eagerly awaitign hearign
your ideas.
-- Robert
|