Microsoft KB Archive/173317: Difference between revisions

From BetaArchive Wiki
m (Text replacement - ">" to ">")
m (Text replacement - """ to """)
 
Line 54: Line 54:


The following call evaluates to TRUE:
The following call evaluates to TRUE:
<pre class="codesample">  <% IsObject(Request.Form(&quot;Valid_Form_Value&quot;)) %>
<pre class="codesample">  <% IsObject(Request.Form("Valid_Form_Value")) %>
                 </pre>
                 </pre>
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:
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:
<pre class="codesample">  <% MyValue = Request.QueryString(&quot;Valid_QueryString_Value&quot;) %>
<pre class="codesample">  <% MyValue = Request.QueryString("Valid_QueryString_Value") %>
                 </pre>
                 </pre>
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.<br />
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.<br />
<br />
<br />
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:
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:
<pre class="codesample">  <% IsObject (Request.QueryString(&quot;Valid_Form_Value&quot;).item) %>
<pre class="codesample">  <% IsObject (Request.QueryString("Valid_Form_Value").item) %>
                 </pre>
                 </pre>



Latest revision as of 11:06, 21 July 2020

Knowledge Base


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

Article ID: 173317

Article Last Modified on 5/2/2006



APPLIES TO

  • Microsoft Active Server Pages 4.0
  • Microsoft Internet Information Server 4.0
  • Microsoft Internet Information Services 5.0



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:

Keywords: kbscript kbprb KB173317