Bug in IIS 5.1 JScript - undefined strings from Request object

R

Robert Mark Bram

Hi All!

I have checked Windows Script help for the Undefined Data Type. It says I
should be able to do this:
// This method will work
if (typeof(x) == "undefined")
// do something

However, I have found that when I try to get something from Session and
Request that does not exist, the object coming back from each is different
when they should both be undefined.

My simple test:

<%@LANGUAGE="JAVASCRIPT" CODEPAGE="65001"%>
<html>
<body>
reallyNotThere: &quot;<%= Session("reallyNotThere") %>&quot;<br>
reallyNotThere2: &quot;<%= Request("reallyNotThere2") %>&quot;<br>
<%
var reallyNotThere = Session ("reallyNotThere");
Response.Write("<br>Not there &quot;" + reallyNotThere + "&quot;")
if (typeof(reallyNotThere) == "undefined")
{
Response.Write("<br>it is not there!");
}
else
{
Response.Write("<br>it is there");
}

var reallyNotThere2 = Request("reallyNotThere2");
Response.Write("<br>Not there 2 &quot;" + reallyNotThere2 +
"&quot;")
if (typeof(reallyNotThere2) == "undefined")
{
Response.Write("<br>it is not there!");
}
else
{
Response.Write("<br>it is there");
}
%>
</body>
</html>


The output:

reallyNotThere: ""
reallyNotThere2: ""

Not there "undefined"
it is not there!
Not there 2 "undefined"
it is there



If
(typeof(reallyNotThere) == "undefined")
is true, so should
(typeof(reallyNotThere2) == "undefined")

Rob
:)
 
W

W d'Anjos

I think the difference is that Session("reallyNotThere") returns null
and Request("reallyNotThere2") returns an empty string.

Try Response.Write(typeof(reallyNotThere) + " - " +
typeof(reallyNotThere2)), if I am correct it should display "undefined
- object".

-Wagner
 
R

Robert Mark Bram

Hi Wagner,
I think the difference is that Session("reallyNotThere") returns null
and Request("reallyNotThere2") returns an empty string.

Try Response.Write(typeof(reallyNotThere) + " - " +
typeof(reallyNotThere2)), if I am correct it should display "undefined
- object".

Not quite - reallyNotThere2 is an object (with no toString method!) that
becomes the String "undefined" when you put in a String.

It seems an impossible test - it doesn't report itself as being null or
undefined plus it's not an empty String.. meaning there is no easy way to
tell whether it is "undefined" because it's not defined or "undefined"
because the user typed that... except if you test for this:
if ("toString" in reallyNotThere2)

I tried this:

var reallyNotThere = Session("reallyNotThere") ;
var reallyNotThere2 = Request("reallyNotThere") ;

Response.Write("=========<br>"),
Response.Write("reallyNotThere== null - " + (reallyNotThere == null ) +
"<br>");
Response.Write("reallyNotThere === null - " + (reallyNotThere === null ) +
"<br>");
Response.Write("reallyNotThere2 == \"\" - " + (reallyNotThere2 == "" ) +
"<br>");
Response.Write("reallyNotThere2 === \"\" - " + (reallyNotThere2 === "" ) +
"<br>");
Response.Write("reallyNotThere2 == null - " + (reallyNotThere2 == null ) +
"<br>");
Response.Write("reallyNotThere2 === null - " + (reallyNotThere2 === null )
+ "<br>");
Response.Write(typeof(reallyNotThere) + " - " + typeof(reallyNotThere2)+
"<br>"),
Response.Write("reallyNotThere is \"" + reallyNotThere + "\" - " +
"reallyNotThere2 is \"" + reallyNotThere2 + "\"<br>");
if ("toString" in reallyNotThere2) {
Response.Write("reallyNotThere2 has a toString<br>");
} else {
Response.Write("reallyNotThere2 has no toString<br>");
}
Response.Write("=========<br>");




Output:
=========
reallyNotThere== null - true
reallyNotThere === null - false
reallyNotThere2 == "" - false
reallyNotThere2 === "" - false
reallyNotThere2 == null - false
reallyNotThere2 === null - false
undefined - object
reallyNotThere is "undefined" - reallyNotThere2 is "undefined"
reallyNotThere2 has no toString
=========

Rob
:)
 
S

Steve van Dongen

Hi Wagner,


Not quite - reallyNotThere2 is an object (with no toString method!) that
becomes the String "undefined" when you put in a String.

It seems an impossible test - it doesn't report itself as being null or
undefined plus it's not an empty String.. meaning there is no easy way to
tell whether it is "undefined" because it's not defined or "undefined"
because the user typed that... except if you test for this:
if ("toString" in reallyNotThere2)

I tried this:

var reallyNotThere = Session("reallyNotThere") ;
var reallyNotThere2 = Request("reallyNotThere") ;

I usually do this:
var reallyNotThere2 = String(Request("reallyNotThere"));
if (reallyNotThere2 == "" || reallyNotThere2 == "undefined")
reallyNotThere2 = null;
and then test for null where appropriate.

Regards,
Steve
 
R

Robert Mark Bram

Hi Steve!
I usually do this:
var reallyNotThere2 = String(Request("reallyNotThere"));
if (reallyNotThere2 == "" || reallyNotThere2 == "undefined")
reallyNotThere2 = null;
and then test for null where appropriate.

I don't like to use this because of the (admittedly remote) possibility that
I have a text field where "undefined" is a possible value... but I see your
point.

Rob
:)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top