Step : Adding a session parameter
|
|
|
Session parameters are HTML parameters that are passed to the Z and I Emulator for Web applet and that affect its behavior in specific ways. You can learn more about the various types of session parameters in the Z and I Emulator for Web online documentation.
To add a session parameter to a custom HTML template file, place the parameter between the <!-- STARTAPPLETPARMS --> comment line and the <!-- ENDAPPLETPARMS --> comment line. Do not put any statements between these two lines other than session parameters.
In specifying a session parameter use the format <PARAM=name VALUE=value>. The following example shows a Disable session parameter and a IgnoreWellKnownTrustedCAs parameter.
<!-- STARTAPPLETPARMS --> <PARAM NAME="Disable" VALUE="cutpaste;filexfer3270;filexfer5250"> <PARAM NAME="IgnoreWellKnownTrustedCAs" VALUE="true"> <!-- ENDAPPLETPARMS -->
|
|
|