473,382 Members | 1,717 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Response.Cookies bug

Hi...

I've come across some weird bug with Response.Cookies. Or maybe it will be
called "by design" but for the life of me I can't figure out what purpose it
would serve. If you're setting a cookie (say Response.Cookies ("TEST")) and
you have a query string variable &test=x or &Test=x and you get
Request.QueryString to parse the query string, the cookie that gets dropped
matches the case of the query string, not what your code says. In other
words even though the code says Response.Cookies ("TEST"), it drops
Response.Cookies ("test") instead.

Anyone have any idea what's going on here? There's an example below. Try
it with http://127.0.0.1/cookieTest.asp?test=x and without the query string
variable.

<%@Language=Jscript Enablesessionstate=false%>
<% var exp = new Date();
exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
exp.getUTCFullYear()

var x = Request.QueryString ("dummy");
Response.Cookies("TEST") = "This is a test";
Response.Cookies("TEST").Expires = expDate;
%>

Thanks
_mark
Jul 22 '05 #1
6 3012
2 problems.

Your question does not make any sense to me.
Your example page does not display anything.

Please restate the problem as clearly as possible with examples of the what
you expect to see that you are not seeing happen.

If possible, provide a sample page that displays the difference.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Mark" <mm******@nospam.nospam> wrote in message
news:19**********************************@microsof t.com...
Hi...

I've come across some weird bug with Response.Cookies. Or maybe it will be called "by design" but for the life of me I can't figure out what purpose it would serve. If you're setting a cookie (say Response.Cookies ("TEST")) and you have a query string variable &test=x or &Test=x and you get
Request.QueryString to parse the query string, the cookie that gets dropped matches the case of the query string, not what your code says. In other
words even though the code says Response.Cookies ("TEST"), it drops
Response.Cookies ("test") instead.

Anyone have any idea what's going on here? There's an example below. Try
it with http://127.0.0.1/cookieTest.asp?test=x and without the query string variable.

<%@Language=Jscript Enablesessionstate=false%>
<% var exp = new Date();
exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
exp.getUTCFullYear()

var x = Request.QueryString ("dummy");
Response.Cookies("TEST") = "This is a test";
Response.Cookies("TEST").Expires = expDate;
%>

Thanks
_mark

Jul 22 '05 #2
Sorry... The point is to look at the cookie-setting that is done in the
response. Adding a lot of code to dump out the current cookie state I
thought would gum up the example.

The main point is that given the code below, one would expect *always* to see

Set-Cookie: TEST=This+is+a+test; expires=Wed, 28-Feb-2007 05:00:00 GMT; path=/

as a header response for this page, since the name and case of the cookie is
a hard-coded literal value in the code. The bug in IIS is that if you have,
say, &test=x on your query string, IIS returns

Set-Cookie: test=This+is+a+test; expires=Wed, 28-Feb-2007 05:00:00 GMT; path=/

as the cookie setting (notice the case difference).

This is a problem because when you look for Request.Cookies on subsequent
page views, those *are* case sensative, so the fact that you're not setting
the cookie you think you are can cause a lot of problems.

The response header case-insensativity problem only seems to occur
a) when there a querystring variable exists with some other representation
of the name and
b) when the code uses Request.QueryString ("var") to get the Request object
to parse the query string. Note that you don't even have to be looking for
the variable (sort of) sharing the cookie name; anything to get Request to
parse the query string into a collection.

If you leave &test=x off of the url or if you take out the
var x = Request.QueryString ("dummy");
line, you get the first, correct cookie header as a response.

Thanks
_mark
"Mark Schupp" wrote:
2 problems.

Your question does not make any sense to me.
Your example page does not display anything.

Please restate the problem as clearly as possible with examples of the what
you expect to see that you are not seeing happen.

If possible, provide a sample page that displays the difference.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Mark" <mm******@nospam.nospam> wrote in message
news:19**********************************@microsof t.com...
Hi...

I've come across some weird bug with Response.Cookies. Or maybe it will

be
called "by design" but for the life of me I can't figure out what purpose

it
would serve. If you're setting a cookie (say Response.Cookies ("TEST"))

and
you have a query string variable &test=x or &Test=x and you get
Request.QueryString to parse the query string, the cookie that gets

dropped
matches the case of the query string, not what your code says. In other
words even though the code says Response.Cookies ("TEST"), it drops
Response.Cookies ("test") instead.

Anyone have any idea what's going on here? There's an example below. Try
it with http://127.0.0.1/cookieTest.asp?test=x and without the query

string
variable.

<%@Language=Jscript Enablesessionstate=false%>
<% var exp = new Date();
exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
exp.getUTCFullYear()

var x = Request.QueryString ("dummy");
Response.Cookies("TEST") = "This is a test";
Response.Cookies("TEST").Expires = expDate;
%>

Thanks
_mark


Jul 22 '05 #3
possibly I am missing something (I'm not all that knowledgable about
cookies) but the cookie collection does not appear to be case-sensitive.

Running the below code gives the same value for "TEST" as for "test" on the
second request (all cookies were deleted first).

%@Language=Jscript Enablesessionstate=false%>
<% var exp = new Date();
exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
exp.getUTCFullYear()

Response.Write( "TEST cookie:" + Request.Cookies("TEST") + "<br>" );
Response.Write( "test cookie:" + Request.Cookies("test") + "<br>" );

var x = Request.QueryString ("dummy");
Response.Cookies("TEST") = "This is a test";
Response.Cookies("TEST").Expires = expDate;
%>
--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Mark" <mm******@nospam.nospam> wrote in message
news:C1**********************************@microsof t.com...
Sorry... The point is to look at the cookie-setting that is done in the
response. Adding a lot of code to dump out the current cookie state I
thought would gum up the example.

The main point is that given the code below, one would expect *always* to see
Set-Cookie: TEST=This+is+a+test; expires=Wed, 28-Feb-2007 05:00:00 GMT; path=/
as a header response for this page, since the name and case of the cookie is a hard-coded literal value in the code. The bug in IIS is that if you have, say, &test=x on your query string, IIS returns

Set-Cookie: test=This+is+a+test; expires=Wed, 28-Feb-2007 05:00:00 GMT; path=/
as the cookie setting (notice the case difference).

This is a problem because when you look for Request.Cookies on subsequent
page views, those *are* case sensative, so the fact that you're not setting the cookie you think you are can cause a lot of problems.

The response header case-insensativity problem only seems to occur
a) when there a querystring variable exists with some other representation
of the name and
b) when the code uses Request.QueryString ("var") to get the Request object to parse the query string. Note that you don't even have to be looking for the variable (sort of) sharing the cookie name; anything to get Request to
parse the query string into a collection.

If you leave &test=x off of the url or if you take out the
var x = Request.QueryString ("dummy");
line, you get the first, correct cookie header as a response.

Thanks
_mark
"Mark Schupp" wrote:
2 problems.

Your question does not make any sense to me.
Your example page does not display anything.

Please restate the problem as clearly as possible with examples of the what you expect to see that you are not seeing happen.

If possible, provide a sample page that displays the difference.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Mark" <mm******@nospam.nospam> wrote in message
news:19**********************************@microsof t.com...
Hi...

I've come across some weird bug with Response.Cookies. Or maybe it will
be
called "by design" but for the life of me I can't figure out what
purpose it
would serve. If you're setting a cookie (say Response.Cookies
("TEST")) and
you have a query string variable &test=x or &Test=x and you get
Request.QueryString to parse the query string, the cookie that gets

dropped
matches the case of the query string, not what your code says. In

other words even though the code says Response.Cookies ("TEST"), it drops
Response.Cookies ("test") instead.

Anyone have any idea what's going on here? There's an example below. Try it with http://127.0.0.1/cookieTest.asp?test=x and without the query

string
variable.

<%@Language=Jscript Enablesessionstate=false%>
<% var exp = new Date();
exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
exp.getUTCFullYear()

var x = Request.QueryString ("dummy");
Response.Cookies("TEST") = "This is a test";
Response.Cookies("TEST").Expires = expDate;
%>

Thanks
_mark


Jul 22 '05 #4
Hi Mark...

Okay, now this is getting a little weird. After seeing your post, I went to
www.w3c.org and read sections of rfc2965 about cookies, and it does say in
there that the names of the cookies are case-insensitive, so the fact that
IIS behaves inconsistently could be argued as not a bug, but then the bug
just moves to IE, which is treating the cookie names as case-*sensitive*.

I.e. If I get the first reported problem to happen (the name of the cookie
switches case), from then on, IE will pass up *both* versions of the cookie
and the upper case one seems to trump the lower case one when you go to look
for it. In other words, you can never find that lower case cookie in ASP
even though IE is sending both back up.

Further muddying the waters is that your modification (referencing
Request.Cookies("TEST")) seems to undo whatever state in IIS gets the state
mixed up in the first place. If you're watching the headers returned from
the page with your modifications, the cookies in question *don't* switch case
on their names anymore. If you comment out those lines and just watch the
headers, IIS is messing with the case.

I made another small mod on your mod so that now it will set the cookie with
the querystring value, if any. Otherwise it sets it with the time of day.
Adding this on below. So in summary, it seems like IIS has a small bug that
MS might try to explain away as "acceptible inconsistency" and IE has a bug
in that it doesn't manage cookies of similar names properly.

<%@Language=Jscript Enablesessionstate=false%>
<% var exp = new Date();
exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
exp.getUTCFullYear()

//Response.Write( "TEST cookie:" + Request.Cookies("TEST") + "<br>" );
//Response.Write( "test cookie:" + Request.Cookies("test") + "<br>" );

var x = Request.QueryString ("test");
if (String (x) == "undefined") x = (new Date()).toString();
Response.Cookies("TEST") = x;
Response.Cookies("TEST").Expires = expDate;
%>
Thanks
-mark
"Mark Schupp" wrote:
possibly I am missing something (I'm not all that knowledgable about
cookies) but the cookie collection does not appear to be case-sensitive.

Running the below code gives the same value for "TEST" as for "test" on the
second request (all cookies were deleted first).

%@Language=Jscript Enablesessionstate=false%>
<% var exp = new Date();
exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
exp.getUTCFullYear()

Response.Write( "TEST cookie:" + Request.Cookies("TEST") + "<br>" );
Response.Write( "test cookie:" + Request.Cookies("test") + "<br>" );

var x = Request.QueryString ("dummy");
Response.Cookies("TEST") = "This is a test";
Response.Cookies("TEST").Expires = expDate;
%>
--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Mark" <mm******@nospam.nospam> wrote in message
news:C1**********************************@microsof t.com...
Sorry... The point is to look at the cookie-setting that is done in the
response. Adding a lot of code to dump out the current cookie state I
thought would gum up the example.

The main point is that given the code below, one would expect *always* to

see

Set-Cookie: TEST=This+is+a+test; expires=Wed, 28-Feb-2007 05:00:00 GMT;

path=/

as a header response for this page, since the name and case of the cookie

is
a hard-coded literal value in the code. The bug in IIS is that if you

have,
say, &test=x on your query string, IIS returns

Set-Cookie: test=This+is+a+test; expires=Wed, 28-Feb-2007 05:00:00 GMT;

path=/

as the cookie setting (notice the case difference).

This is a problem because when you look for Request.Cookies on subsequent
page views, those *are* case sensative, so the fact that you're not

setting
the cookie you think you are can cause a lot of problems.

The response header case-insensativity problem only seems to occur
a) when there a querystring variable exists with some other representation
of the name and
b) when the code uses Request.QueryString ("var") to get the Request

object
to parse the query string. Note that you don't even have to be looking

for
the variable (sort of) sharing the cookie name; anything to get Request to
parse the query string into a collection.

If you leave &test=x off of the url or if you take out the
var x = Request.QueryString ("dummy");
line, you get the first, correct cookie header as a response.

Thanks
_mark
"Mark Schupp" wrote:
2 problems.

Your question does not make any sense to me.
Your example page does not display anything.

Please restate the problem as clearly as possible with examples of the what you expect to see that you are not seeing happen.

If possible, provide a sample page that displays the difference.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Mark" <mm******@nospam.nospam> wrote in message
news:19**********************************@microsof t.com...
> Hi...
>
> I've come across some weird bug with Response.Cookies. Or maybe it will be
> called "by design" but for the life of me I can't figure out what purpose it
> would serve. If you're setting a cookie (say Response.Cookies ("TEST")) and
> you have a query string variable &test=x or &Test=x and you get
> Request.QueryString to parse the query string, the cookie that gets
dropped
> matches the case of the query string, not what your code says. In other > words even though the code says Response.Cookies ("TEST"), it drops
> Response.Cookies ("test") instead.
>
> Anyone have any idea what's going on here? There's an example below. Try > it with http://127.0.0.1/cookieTest.asp?test=x and without the query
string
> variable.
>
> <%@Language=Jscript Enablesessionstate=false%>
> <% var exp = new Date();
> exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
> var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
> exp.getUTCFullYear()
>
> var x = Request.QueryString ("dummy");
> Response.Cookies("TEST") = "This is a test";
> Response.Cookies("TEST").Expires = expDate;
> %>
>
> Thanks
> _mark


Jul 22 '05 #5
Can you post a simple page that demonstrates the problem on the IE side?

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Mark" <mm******@nospam.nospam> wrote in message
news:E0**********************************@microsof t.com...
Hi Mark...

Okay, now this is getting a little weird. After seeing your post, I went to www.w3c.org and read sections of rfc2965 about cookies, and it does say in
there that the names of the cookies are case-insensitive, so the fact that
IIS behaves inconsistently could be argued as not a bug, but then the bug
just moves to IE, which is treating the cookie names as case-*sensitive*.

I.e. If I get the first reported problem to happen (the name of the cookie
switches case), from then on, IE will pass up *both* versions of the cookie and the upper case one seems to trump the lower case one when you go to look for it. In other words, you can never find that lower case cookie in ASP
even though IE is sending both back up.

Further muddying the waters is that your modification (referencing
Request.Cookies("TEST")) seems to undo whatever state in IIS gets the state mixed up in the first place. If you're watching the headers returned from
the page with your modifications, the cookies in question *don't* switch case on their names anymore. If you comment out those lines and just watch the
headers, IIS is messing with the case.

I made another small mod on your mod so that now it will set the cookie with the querystring value, if any. Otherwise it sets it with the time of day.
Adding this on below. So in summary, it seems like IIS has a small bug that MS might try to explain away as "acceptible inconsistency" and IE has a bug in that it doesn't manage cookies of similar names properly.

<%@Language=Jscript Enablesessionstate=false%>
<% var exp = new Date();
exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
exp.getUTCFullYear()

//Response.Write( "TEST cookie:" + Request.Cookies("TEST") + "<br>" );
//Response.Write( "test cookie:" + Request.Cookies("test") + "<br>" );

var x = Request.QueryString ("test");
if (String (x) == "undefined") x = (new Date()).toString();
Response.Cookies("TEST") = x;
Response.Cookies("TEST").Expires = expDate;
%>
Thanks
-mark
"Mark Schupp" wrote:
possibly I am missing something (I'm not all that knowledgable about
cookies) but the cookie collection does not appear to be case-sensitive.

Running the below code gives the same value for "TEST" as for "test" on the second request (all cookies were deleted first).

%@Language=Jscript Enablesessionstate=false%>
<% var exp = new Date();
exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
exp.getUTCFullYear()

Response.Write( "TEST cookie:" + Request.Cookies("TEST") + "<br>" );
Response.Write( "test cookie:" + Request.Cookies("test") + "<br>" );

var x = Request.QueryString ("dummy");
Response.Cookies("TEST") = "This is a test";
Response.Cookies("TEST").Expires = expDate;
%>
--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Mark" <mm******@nospam.nospam> wrote in message
news:C1**********************************@microsof t.com...
Sorry... The point is to look at the cookie-setting that is done in the response. Adding a lot of code to dump out the current cookie state I
thought would gum up the example.

The main point is that given the code below, one would expect *always* to
see

Set-Cookie: TEST=This+is+a+test; expires=Wed, 28-Feb-2007 05:00:00
GMT; path=/

as a header response for this page, since the name and case of the
cookie is
a hard-coded literal value in the code. The bug in IIS is that if you

have,
say, &test=x on your query string, IIS returns

Set-Cookie: test=This+is+a+test; expires=Wed, 28-Feb-2007 05:00:00
GMT; path=/

as the cookie setting (notice the case difference).

This is a problem because when you look for Request.Cookies on
subsequent page views, those *are* case sensative, so the fact that you're not

setting
the cookie you think you are can cause a lot of problems.

The response header case-insensativity problem only seems to occur
a) when there a querystring variable exists with some other representation of the name and
b) when the code uses Request.QueryString ("var") to get the Request

object
to parse the query string. Note that you don't even have to be looking for
the variable (sort of) sharing the cookie name; anything to get
Request to parse the query string into a collection.

If you leave &test=x off of the url or if you take out the
var x = Request.QueryString ("dummy");
line, you get the first, correct cookie header as a response.

Thanks
_mark
"Mark Schupp" wrote:

> 2 problems.
>
> Your question does not make any sense to me.
> Your example page does not display anything.
>
> Please restate the problem as clearly as possible with examples of the what
> you expect to see that you are not seeing happen.
>
> If possible, provide a sample page that displays the difference.
>
> --
> Mark Schupp
> Head of Development
> Integrity eLearning
> www.ielearning.com
>
>
> "Mark" <mm******@nospam.nospam> wrote in message
> news:19**********************************@microsof t.com...
> > Hi...
> >
> > I've come across some weird bug with Response.Cookies. Or maybe
it will
> be
> > called "by design" but for the life of me I can't figure out what

purpose
> it
> > would serve. If you're setting a cookie (say Response.Cookies

("TEST"))
> and
> > you have a query string variable &test=x or &Test=x and you get
> > Request.QueryString to parse the query string, the cookie that
gets > dropped
> > matches the case of the query string, not what your code says. In

other
> > words even though the code says Response.Cookies ("TEST"), it drops > > Response.Cookies ("test") instead.
> >
> > Anyone have any idea what's going on here? There's an example below. Try
> > it with http://127.0.0.1/cookieTest.asp?test=x and without the

query > string
> > variable.
> >
> > <%@Language=Jscript Enablesessionstate=false%>
> > <% var exp = new Date();
> > exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
> > var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" + > > exp.getUTCFullYear()
> >
> > var x = Request.QueryString ("dummy");
> > Response.Cookies("TEST") = "This is a test";
> > Response.Cookies("TEST").Expires = expDate;
> > %>
> >
> > Thanks
> > _mark
>
>
>


Jul 22 '05 #6
Hi Mark...

Generally, I've been using proxytrace to watch the headers going back and
forth, demonstrating the problem. Otherwise, you could look at the cookies
files on your IE side to see it.

If you set a cookie "TEST" and a cookie "test" for the same host/ie instance
pair, you'll see that on the IE side, it's treating them case-sensitively -
i.e. you get two different cookies with two different values. If you go back
to that host, IE will present both cookies to IIS. As your example
demonstrated, IIS is treating the names case-insensitively (upper trumps
lower).

The nub is that either cookie names are supposed to be case-insensitive or
they're not. IIS is being pretty loose about case-sensitivity but it could
be argued the standard lets them be. IE is being strictly case sensitive in
the management of the cookies, which interacts with IIS in strange ways.

I'm writing it up and submitting it to the MS bug-report line now
(unfortunately our msdn subscription is in the process of being renewed, or I
just would have called them up).

Thanks
-mark
"Mark Schupp" wrote:
Can you post a simple page that demonstrates the problem on the IE side?

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Mark" <mm******@nospam.nospam> wrote in message
news:E0**********************************@microsof t.com...
Hi Mark...

Okay, now this is getting a little weird. After seeing your post, I went

to
www.w3c.org and read sections of rfc2965 about cookies, and it does say in
there that the names of the cookies are case-insensitive, so the fact that
IIS behaves inconsistently could be argued as not a bug, but then the bug
just moves to IE, which is treating the cookie names as case-*sensitive*.

I.e. If I get the first reported problem to happen (the name of the cookie
switches case), from then on, IE will pass up *both* versions of the

cookie
and the upper case one seems to trump the lower case one when you go to

look
for it. In other words, you can never find that lower case cookie in ASP
even though IE is sending both back up.

Further muddying the waters is that your modification (referencing
Request.Cookies("TEST")) seems to undo whatever state in IIS gets the

state
mixed up in the first place. If you're watching the headers returned from
the page with your modifications, the cookies in question *don't* switch

case
on their names anymore. If you comment out those lines and just watch the
headers, IIS is messing with the case.

I made another small mod on your mod so that now it will set the cookie

with
the querystring value, if any. Otherwise it sets it with the time of day.
Adding this on below. So in summary, it seems like IIS has a small bug

that
MS might try to explain away as "acceptible inconsistency" and IE has a

bug
in that it doesn't manage cookies of similar names properly.

<%@Language=Jscript Enablesessionstate=false%>
<% var exp = new Date();
exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
exp.getUTCFullYear()

//Response.Write( "TEST cookie:" + Request.Cookies("TEST") + "<br>" );
//Response.Write( "test cookie:" + Request.Cookies("test") + "<br>" );

var x = Request.QueryString ("test");
if (String (x) == "undefined") x = (new Date()).toString();
Response.Cookies("TEST") = x;
Response.Cookies("TEST").Expires = expDate;
%>
Thanks
-mark
"Mark Schupp" wrote:
possibly I am missing something (I'm not all that knowledgable about
cookies) but the cookie collection does not appear to be case-sensitive.

Running the below code gives the same value for "TEST" as for "test" on the second request (all cookies were deleted first).

%@Language=Jscript Enablesessionstate=false%>
<% var exp = new Date();
exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" +
exp.getUTCFullYear()

Response.Write( "TEST cookie:" + Request.Cookies("TEST") + "<br>" );
Response.Write( "test cookie:" + Request.Cookies("test") + "<br>" );

var x = Request.QueryString ("dummy");
Response.Cookies("TEST") = "This is a test";
Response.Cookies("TEST").Expires = expDate;
%>
--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Mark" <mm******@nospam.nospam> wrote in message
news:C1**********************************@microsof t.com...
> Sorry... The point is to look at the cookie-setting that is done in the > response. Adding a lot of code to dump out the current cookie state I
> thought would gum up the example.
>
> The main point is that given the code below, one would expect *always* to see
>
> Set-Cookie: TEST=This+is+a+test; expires=Wed, 28-Feb-2007 05:00:00 GMT; path=/
>
> as a header response for this page, since the name and case of the cookie is
> a hard-coded literal value in the code. The bug in IIS is that if you
have,
> say, &test=x on your query string, IIS returns
>
> Set-Cookie: test=This+is+a+test; expires=Wed, 28-Feb-2007 05:00:00 GMT; path=/
>
> as the cookie setting (notice the case difference).
>
> This is a problem because when you look for Request.Cookies on subsequent > page views, those *are* case sensative, so the fact that you're not
setting
> the cookie you think you are can cause a lot of problems.
>
> The response header case-insensativity problem only seems to occur
> a) when there a querystring variable exists with some other representation > of the name and
> b) when the code uses Request.QueryString ("var") to get the Request
object
> to parse the query string. Note that you don't even have to be looking for
> the variable (sort of) sharing the cookie name; anything to get Request to > parse the query string into a collection.
>
> If you leave &test=x off of the url or if you take out the
> var x = Request.QueryString ("dummy");
> line, you get the first, correct cookie header as a response.
>
> Thanks
> _mark
>
>
> "Mark Schupp" wrote:
>
> > 2 problems.
> >
> > Your question does not make any sense to me.
> > Your example page does not display anything.
> >
> > Please restate the problem as clearly as possible with examples of the what
> > you expect to see that you are not seeing happen.
> >
> > If possible, provide a sample page that displays the difference.
> >
> > --
> > Mark Schupp
> > Head of Development
> > Integrity eLearning
> > www.ielearning.com
> >
> >
> > "Mark" <mm******@nospam.nospam> wrote in message
> > news:19**********************************@microsof t.com...
> > > Hi...
> > >
> > > I've come across some weird bug with Response.Cookies. Or maybe it will
> > be
> > > called "by design" but for the life of me I can't figure out what
purpose
> > it
> > > would serve. If you're setting a cookie (say Response.Cookies
("TEST"))
> > and
> > > you have a query string variable &test=x or &Test=x and you get
> > > Request.QueryString to parse the query string, the cookie that gets > > dropped
> > > matches the case of the query string, not what your code says. In
other
> > > words even though the code says Response.Cookies ("TEST"), it drops > > > Response.Cookies ("test") instead.
> > >
> > > Anyone have any idea what's going on here? There's an example below. Try
> > > it with http://127.0.0.1/cookieTest.asp?test=x and without the query > > string
> > > variable.
> > >
> > > <%@Language=Jscript Enablesessionstate=false%>
> > > <% var exp = new Date();
> > > exp.setTime(exp.getTime() + (2 * 365 * 24 * 60 * 60 * 1000))
> > > var expDate = (exp.getUTCMonth()+1) + "/" + exp.getUTCDate() + "/" + > > > exp.getUTCFullYear()
> > >
> > > var x = Request.QueryString ("dummy");
> > > Response.Cookies("TEST") = "This is a test";
> > > Response.Cookies("TEST").Expires = expDate;
> > > %>
> > >
> > > Thanks
> > > _mark
> >
> >
> >


Jul 22 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Glen | last post by:
Hi, I am looking for a way to delete (expire) all the cookies that we've ever written to the user's machine. I have found several scripts, however I have come across one "gotcha." The scripts...
2
by: Scott | last post by:
I would like to have my ASPX page call a function intended to make changes the the current Page.Response.Cookies. I had thought that to allow the function to modify the Cookies, I would have top...
6
by: Sam | last post by:
I have some issues with HTTP Headers and I was hoping for some pointers or references to good articles. Here is the problem. I have 6 .aspx pages, each page contains a common .ascx. This ascx...
1
by: Earl Teigrob | last post by:
When I write inline code on a aspx page using Page.Response.Cookies() to read a cookie, everything works fine, as in the following code. Dim x As Object = Request.Cookies("thing") If x Is Nothing...
14
by: tomer | last post by:
Clear DayHello, I have implemented a download manger in .NET that overrides Internet Explorer's bult-in download manager. I using HttpWebRequest/Response to download the files. All is working...
1
by: Alex Nitulescu | last post by:
I have the following very simple colde (while learning about cookies and session state): Private Sub cmdAddCookie_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
1
by: Kevin Blount | last post by:
Background: My script is designed to only allow the downloading of a file if a cookie exists to say that someone is logged into my companies site. A colleague set up a test area the extension...
4
by: mike.biang | last post by:
I have an ASP page that is using an XMLHTTP object to request various pages from my server. I keep a single session throughout the XMLHTTP requests by bassing the ASPSESSIONID cookie through the...
10
by: _Who | last post by:
Given Request.Cookies and Response.Cookies in asp.net is there any reason to ever use javascript or any other method to use cookies? Thanks
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.