in reply to CGI.pm: How to Stop Maintaining State
I believe this will do what you want.use CGI qw(-nosticky :standard);
It also looks like you can toggle it on individual calls to $q->hidden() et all, using -override=>1
$query->hidden(-name=>'field_name', -override=>1, );
-Blake
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: CGI.pm: How to Stop Maintaining State
by Dross (Acolyte) on Sep 11, 2001 at 01:43 UTC |