On Mon, Jan 19, 2009 at 8:38 AM, Sid Ferreira <sid....@gmail.com> wrote:
> Im trying to forward or redirect the page programatically, for instance:
> Opens Start.tml, if the ID is TRUE, it goes to List.tml, else it goes to
> Login.tml. How to redirect?

Put this method in your Start class:

Object onActivate() {
    if (needs to redirect)
        return Login.class;
    }
    else {
         return null;
    }
}
>
> --
> Sidney G B Ferreira
> Desenvolvedor Web - Tibox Innovations
>



-- 
Thiago

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to