| AppliBuilder
User Documentation |
It
is often necessary to use paramaters on a page, and reuse the same page
with different parameter values. Page parameters can be used by
specifying the parameters at the end of the page URL.
You
can pass parameters to the page using the URL.
http://server/happs/username/appname/mypage.html?param1=value1¶m2=value2
In mypage.html you can get the paramters like this:
var params = (new Applibase.Core()).getURLParameters();
if(params != null) {
var param1 = params.param1;
var param2 = params["param2"];
}
NOTE: params is a
Javascript Object. Both, params.key or params["key"] are valid.
| ©
2006 Applibase, Inc. |