DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
Passing Parameters
...
(General)
Adding the parameters in your WebPage:
| Code Block |
|---|
...
PageParameters params = new PageParameters();
params.put("param", "value");
setResponsePage(PageToRetrieveParams.class, params);
...
|
Retrieving the parameters in your WebPage:
| Code Block |
|---|
...
public PageToRetrieveParams(PageParameters p) {
p.getString("param");
}
...
|
Passing Parameters (To Home Page)
In your WebApplication:
| Code Block |
|---|
...
public Class<? extends WebPage> getHomePage() {
return HomePage.class;
}
...
|
...