Re: how can I call a web url from actionlink
thank you very much :-) -Ursprüngliche Nachricht- Von: "Tapestry users" Gesendet: 17.05.08 17:48:23 An: "Tapestry users" Betreff: Re: how can I call a web url from actionlink Return an URL object: @OnEvent (component="quitGame") Object onQuit()
Re: how can I call a web url from actionlink
Return an URL object: @OnEvent (component="quitGame") Object onQuit() throws MalformedURLException { memory.quit(); // more things to do before quitting return new URL("http://www.someOtherWebspace.com";); } -- Thiago ---