Been working on a classic asp page. I’ve been using Request.Form("x") and saw that I can also use Request("x") to accomplish the same result.
What is the difference between the two? If they’re the same I’ll just use the later as it saves me some typing 🙂
The HttpRequest.Item property will search for the specified key in the QueryString, Form, Cookies, or ServerVariables collections.
The HttpRequest.Form property will only search among form variables.
Related resources: