INFO: Active Server Pages' Request.Form and Request.QueryString Return ObjectsID: Q173317
|
The values returned by Request.Form and Request.QueryString are actually objects, rather than strings as you would expect. This causes subtle conversion problems in server-side scripts, especially JScript.
The following call evaluates to TRUE:
<% IsObject(Request.Form("Valid_Form_Value")) %>
<% MyValue = Request.QueryString("Valid_QueryString_Value") %>
<% IsObject (Request.QueryString("Valid_Form_Value").item) %>
For the latest Knowledge Base artices and other support information on Visual InterDev and Active Server Pages, see the following page on the Microsoft Technical Support site:
http://support.microsoft.com/support/vinterdev/
Additional query words:
Keywords : kbASP kbASPObj kbScript kbVisID kbVisID100 kbGrpASP
Version : winnt:
Platform : winnt
Issue type : kbinfo
Last Reviewed: May 27, 1999