I started to create a login page .I created a sign in anchor when i
click on dat sign in link I need to go to sign in page .What can i do
for that?Should I create any new page for that??Please do reply
package com.gwt.sample.client;
import com.google.gwt.core.client.EntryPoint;
public class SampleApplication implements EntryPoint {
private Anchor anchor;
public void onModuleLoad() {
VerticalPanel mainPanel = new VerticalPanel();
anchor = new Anchor();
anchor.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
}
});
anchor.setText("Sign in");
mainPanel.add(anchor);
}
}
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.