See Navigating among web pages with navigation rules for information on forwarding to a different web page.
handler myPage type JSFHandler
{onPreRenderFunction = onPreRender,
view = "myPage.jsp"}
function onPreRender(myIntVariable int, myCharVariable char(100))
end
end
If you define more than one of these JSF Handler properties, the specified functions must have matching parameters because all functions receive the passed data. However, you can leave the parameters out of the functions if you do not plan to use the passed data in that function.
myInteger int = 5;
myChar char(100) = "Hello";
forward myInteger, myChar to "myPage";
The variables must be separated by commas, and their types must be compatible with the types defined in the functions of the target page.