On Mon, Jan 19, 2009 at 8:38 AM, Sid Ferreira <[email protected]> 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: [email protected]
For additional commands, e-mail: [email protected]