Re: how can I call a web url from actionlink

2008-05-18 Thread jg433
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

2008-05-17 Thread Thiago HP
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 ---