I'm migrating a classic asp app (I know, lucky me) to a mixed asp.net/asp site, and it seems like I don't have access to the Request.Form collection. Just as a test, I did this:
for each x in Request.Form
Response.Write("<br>" & x & " = " & Request.Form(x))
next
I get this:
Request object error 'ASP 0101 : 80004005' Unexpected error [my script], line xx The function returned |.
If I switch the App Pool from Integrated Pipeline to Classic the code works, but running in classic mode is not an option for the .net app. Is there a workaround in my future?