Hi,
how can I turn off stickiness for CGI's HTML methods.
Example:
I call a script with parameter "mode=new" and the following line
print $q->hidden('mode', 'slurp');
prints out
instead of
I tried the -nosticky pragma when loading CGI, but it did not change the
behaviour.
How can I fo
Hi,
should have read perldoc *thoroughly*, sorry:
>Note, that just like all the other form elements, the value of a
>hidden field is "sticky". If you want to replace a hidden field with
>some other values after the script has been called once you'll have
>to do it manually:
>
>$query->param('hid
> "Jan" == Jan Eden <[EMAIL PROTECTED]> writes:
Jan> Hi,
Jan> should have read perldoc *thoroughly*, sorry:
>> Note, that just like all the other form elements, the value of a
>> hidden field is "sticky". If you want to replace a hidden field with
>> some other values after the script has be