What is the difference between these two in VBScript:
Request("startDate")
Request.QueryString["startDate"]
And where is Request("startDate") documented? I don’t see this usage here:
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The official documentation for the
Requestobject in ASP classic is here: http://msdn.microsoft.com/en-us/library/ms524948%28VS.90%29.aspxQuoting the relevant part for this question:
EDIT: AnthonyWJones made a great comment on the question: Avoid using the
Request("name")syntax. In fact, this is mentioned in the documentation link above: