|
||||||
|
|
||||||
|
You are currently on page NavigationA.
ForwardTo forward to NavigationB click here.
setForward("/navigation-b.jsp");
To forward to NavigationB passing the parameter $forwardParamLink.value click
here.
getContext().getRequest().setAttribute("param", param);
setForward("/navigation-b.jsp");
RedirectTo redirect to NavigationB click here.
setRedirect("/navigation-b.jsp");
To redirect to NavigationB passing the parameter $redirectParamLink.value click
here.
setRedirect("/navigation-b.jsp?param=" + param);
Take notice of the different URLs in your browser when you use forward and redirect. |
||||||