Use the With directive to:
Here is an example:
{with PAGE myPage}
Enter your HTML and/or directives here.
{end}
Four JavaServer Page tags provide a functionally identical capability for stream rules using JSP. See:
In the syntax presentations below:
[ and ] define optional parts of the directive. Do not type the brackets.{ and } mark the start and end of the directive.
{with OPTION [=] myReference or myPage}
Enter HTML and/or directives here.
{end}
Option |
Explanation and example |
|
|
Replace the primary page with another page as the base page.
{with PAGE [=] myPage}
Enter your HTML and/or directives here.
{end}
|
|
|
Set the current embedded page.
{with EMBEDDEDPAGE [=] myReference}
Enter your HTML and/or directives here.
{end}
The values for myReference can be:
|
|
|
Defines radio buttons and selection boxes. It lets the system examine the value for the current selection. The target reference target must be to a single scalar destination.
{with TARGET [=] myReference}
Enter your HTML and/or directives here.
{end}
Values for myReference can be:
Use For example:
{with TARGET MyProperty}
{INCLUDE FixedList = myFixedList}
{end}
|
|
|
Override a control rule.
{with REFERENCE [=] .myProperty}
Enter your HTML and/or directives here.
{end}
For example:
{with REFERENCE = .myProperty}
{include myHTML}
{end}
|