I have built a small webform for registration (username, password,email…). I want to open a new webpage(whose html is inside my project) that displays all the relevant data to the user after the successful registration (Thank you for your registration…. ,your username is ….bla bla).
I found this (http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/index.html?overview-summary.html) , but i don’t know if i should use hyperlink or anchor or sth. else.
Tnx
If the resource is relative then you probably want to use my solution from this question:
Navigate between GWT modules
This works for other GWT modules and non-GWT pages deployed relative to your page and this code could be invoked from any event you liked, e.g. on an image click.
The simplest approach is probably just an
<a href="foo.html">link</a>element though…