Hello,
Maybe you could help me.
I would like to use a checkbox under html on my Embedded software.
I've found some help under TCP/IP Volume 2 User’s Manual §5.3.4 but it's not enough for me...
This is my html code I tryed:
<td><INPUT TYPE="hidden" NAME="<?z varname($Enable_SW1) ?>"
VALUE="0">
<INPUT TYPE="checkbox" NAME="<?z varname($Enable_SW1) ?>
VALUE="1"
<?z if ($Enable_SW1 == 1) { ?>
CHECKED
<?z } ?>
</td>
Also in my main file :
protected int Enable_SW1;
#web Enable_SW1;
When I load the page, the checkbox is always false.
If someone could help me, it could be great
