[thelist] ASP - Request Object
Joel Morris
joelm at citycent.com
Wed May 31 13:19:46 2000
I'm deep in the middle of writing a small shopping cart system for a client
in ASP. One page has a form using method="post" and the confirm1.asp page is
simply supposed to read the elements passed by the form.
The client's ISP is running his site on NT 4, IIS, SP5, FP 2000 Extensions.
When I write something simple like:
strKey = Request.Form.Key(1)
Response.Write strKey & "<p>"
I get an error that states:
Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'Request.Form.Key'
/extranet/confirm1.asp, line 21
line 21 is the Request.Form.Key line above
This also happens if I write:
strBytes = Request.TotalBytes
Response.Write strBytes & "<p>"
...it'll give an error that it doesn't support 'Request.TotalBytes'
However, the following do work:
Request.Form("inputname")
Request.Form.Item("inputname")
I took both pages, uploaded them to my NT server, and everything works just
fine.
Any ideas on why I get errors on recognizing such simple Request object
properties?
Might this be a FP2000 extensions issue?
Thanks in advance for any light you can shed on this brick wall I've hit!
Best, Joel
CityCenter Co.
mailto:info@citycent.com