Microsoft Knowledge Base Email Alertz

(173317) - The values that are returned by Request.Form and Request.QueryString are objects, rather than strings as you would expect. This causes subtle conversion problems in server-side scripts, and especially in JScript.

Search KbAlertz

Advanced Search

Receive Microsoft Knowledge Base articles by E-Mail?

Every night we scan the Microsoft Knowledge Base. If technologies you're interested in are updated, we'll send you an e-mail. You only get one e-mail a day, and only when new articles are added.

Click here to create a
FREE account
Already have an account?
[Click here to Login]











Microsoft Knowledge Base Article

This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks

Article ID: 173317 - Last Review: May 2, 2006 - Revision: 4.1

PRB: Active Server Pages' Request.Form and Request.QueryString Return Objects

This article was previously published under Q173317

SYMPTOMS

The values that are returned by Request.Form and Request.QueryString are objects, rather than strings as you would expect. This causes subtle conversion problems in server-side scripts, and especially in JScript.

MORE INFORMATION

The following call evaluates to TRUE:
   <% IsObject(Request.Form("Valid_Form_Value")) %>
				
This is because the Request object returns an IRequestDictionary object rather than a string. In most cases, this subtle fact goes unnoticed because the scripting engine simply substitutes the default value of the object into scripts as necessary. The following example demonstrates what happens when you assign the requested value to a variable:
   <% MyValue = Request.QueryString("Valid_QueryString_Value") %>
				
However, this subtlety causes problems in some scenarios. In particular, it may be necessary to perform explicit casts in JScript or when calling automation methods on objects.

Another option is to use the .item syntax to extract the default value of the object. The following IsObject call evaluates to FALSE and demonstrates use of the .item syntax:
   <% IsObject (Request.QueryString("Valid_Form_Value").item) %>
				

REFERENCES

For the latest Knowledge Base articles and other support information on Visual InterDev and Active Server Pages, see the following Microsoft Technical Support Web site:
http://support.microsoft.com/search/default.aspx?qu=vinterdev (http://support.microsoft.com/search/default.aspx?qu=vinterdev)

APPLIES TO
  • Microsoft Active Server Pages 4.0
  • Microsoft Internet Information Server 4.0
  • Microsoft Internet Information Services 5.0
Keywords: 
kbprb kbscript KB173317
       

Community Feedback System

Very often, it takes hours to solve a problem. Very often, you've looked high and low, and have tried a lot of solutions. When you finally found it, chances are, it was because someone else helped you. Here's your chance to give back. Use our community feedback tool to let others know what worked for you and what didn't.

Please also understand that the community feedback system is not warranted to be correct, it's simply a system that we've built to let people try and help each other. If something in a feedback response doesn't make sense to you, or you're not comfortable making changes that the feedback talks about (like registry edits), please consult a professional.

Thank you for using kbAlertz.com Feedback System.

-- Scott Cate