Quoting mark_mcwiggins <[EMAIL PROTECTED]>:

>
> I can't get $Request->Params to give me the list of
> parameters in a form I can loop through. Can someone
> provide an example?
>
> I've tried variations on
>
>          %params = $Request->Params();
>
>          foreach $key (keys %params)
>          {
>              // etc.
>          }
>

First, you need to set RequestParams ...
  http://www.apache-asp.org/config.html#RequestParam25a784ba

Then you can try:

  my $params = $Request->Params;
  for my $key (keys %$params) {
    my $value = $params->{$key};
    ...
  }

Regards,

Josh

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to