tags:

views:

26

answers:

1
public void pageValidate(PageEvent event) {
        //how to use pageEvent to sendRedirect to google.com ?
A: 

For an external site, use:

throw new RedirectException("http://google.com")

To redirect to a page withing the application use:

throw new PageRedirectException("page");
Brian Deterling