in reply to Re: enctype required??
in thread enctype required??

You are correct in that I am using Apache::ASP.

If I use $Request->Form('thedata'); to get the data it works.

The problem is that I have lots of older code that uses the CGI that was changed into ASP code. The CGI should work in the ASP model.

I guess the decision is which would take more time, changing the forms or changing the code....

Replies are listed 'Best First'.
Re^3: enctype required??
by Errto (Vicar) on Apr 03, 2005 at 01:11 UTC
    What happens if you add
    <%=$Request->ServerVariables(CONTENT_TYPE) %>
    in your page somewhere (using the first version of your form)?
      The response to <%=$Request->ServerVariables(CONTENT_TYPE) %> is:
      application/x-www-form-urlencoded
      as expected. It must be a CGI thing.