ActiveState Powered by ActiveState

ActiveState Community


How To Set CGI Parameters?

Posted by ent on 2008-04-22 21:25

This is driving me nuts. In regular Perl using CGI.pm, you can set the value of a CGI parameter like so:

     $cgi->param(woof => "Bow-wow!");

What is the equivalent syntax in PerlScript using the ASP $Request object? Something like:

     $Request->Form("woof")->Set("Bow-wow!");

or somesuch thing. Is it even possible?

-->