User guide

eWON 500-2001-4001-4002 User Guide - User defined Web site
eWON 500®2001®4001®4002® Version 4_3_0 - User Guide - 10/5/05 - ©ACT'L sa - Page 191
10.4.3.2 Examples
• Single command execution:
Note:
Please note the use of the (a$=’close’) single quote instead of the common a$="close" syntax that would conflict with the HTML
quotes.
• Single command execution with no-default result page
Compared to the previous example, the page displayed after execution is the user page x.shtm.
• Multiple commands execution:
In this example the same commands are executed as in the first example. One of the main differences is that in the first example, the 2
commands (a$=’close’ and MyTag@=1) are executed together (no instruction can be inserted between these 2 instructions). In the second case,
another command or another section may be executed between the 2 commands.
<form method="POST" action="/rcgi.bin/ExeScriptForm">
<input type="hidden" name="Command" value="a$=’close’:MyTag@=1">
</form>
<form method="POST" action="/rcgi.bin/ExeScriptForm">
<input type="hidden" name="Command" value="a$=’close’:MyTag@=1">
<input type="hidden" name="ResultPageOk" value="usr/x.shtm">
</form>
<form method="POST" action="/rcgi.bin/ExeScriptForm">
<input type="hidden" name="Command1" value="a$=’close’">
<input type="hidden" name="Command2" value="MyTag@=1">
</form>