gennoob has asked for the wisdom of the Perl Monks concerning the following question:
This code successfully send user info to my guestbook controller, processed by the record action. However, the url on the browser still displays http://localhost:3000/users/login even if it already displays the page for my guestbook page. If I try to use#(in /users/login) $c->stash->{usern} = $user; $c->forward('/guestbook/record');
it does change the url but it doesn't forward user info. Is there a a proper way to forward between controllers and change the url to indicate the accessed action?$c->res->redirect('http://localhost:3000/guestbook/record');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Catalysts question
by phaylon (Curate) on Apr 20, 2006 at 09:12 UTC | |
by gennoob (Initiate) on Apr 21, 2006 at 04:02 UTC | |
|
Re: Catalysts question
by Corion (Patriarch) on Apr 20, 2006 at 08:26 UTC |