Redirect to mounted page programmatically

2008-12-18 Thread Newgro
is not working because i firstly need a responsepage. But how should i get it by a MountPointId? A global registry is not nice in my eyes. Would be nice if someone can help me out here. thanks Per -- View this message in context: http://www.nabble.com/Redirect-to-mounted-page-programmatically

Re: Redirect to mounted page programmatically

2008-12-18 Thread Erik van Oosten
Hi Per, Wicket does not have this feature. BTW, you do not need a response page instance, just the class is sufficient: setResponsePage(Page1.class); Optionally you can call this as well (since you are talking about redirects): setRedirect(true); // or false Regards, Erik.