



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?