public void pageValidate(PageEvent event) {
//how to use pageEvent to sendRedirect to google.com ?
views:
26answers:
1
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
2009-10-29 17:27:06