Re: IE DOES NOT SUPPORT COOKIE on WIN2K and XP
From: krisrajz (krisrajz_at_discussions.microsoft.com)
Date: 03/08/05
- Next message: steve_at_cronservice.co.uk: "Scheduling ASP Without Cron"
- Previous message: krisrajz: "Re: IE DOES NOT SUPPORT COOKIE on WIN2K and XP"
- In reply to: krisrajz: "Re: IE DOES NOT SUPPORT COOKIE on WIN2K and XP"
- Next in thread: Bob Barrows [MVP]: "Re: IE DOES NOT SUPPORT COOKIE on WIN2K and XP"
- Reply: Bob Barrows [MVP]: "Re: IE DOES NOT SUPPORT COOKIE on WIN2K and XP"
- Messages sorted by: [ date ] [ thread ]
Date: Mon, 7 Mar 2005 23:31:01 -0800
Please observe the code snippet
Shot #1
sample1.asp
<%
Session("test")="Session Testing"
Response.Cookies("cookietest")="Cookie Testing"
Response.write Session("test")
Response.Write Response.Cookies("cookietest")
%>
Does outputs Session Testing and Cookie Testing where as shot #2 does output
anything:
Shot #2
sample1.asp
<%
Session("test")="Session Testing"
Response.Cookies("cookietest")="Cookie Testing"
Response.Redirect "sample2.asp"
%>
sample2.asp
<%
Response.Write Session("test")
Response.Write Response.Cookies("cookietest")
%>
I've tested those pages on Avant Browser ( which is also IE based), it too
behaves as IE does. When I test pages on Opera, Netscape Navigator the pages
does output.
Why do IE behaves strangely on handling cookies and sessions? or Does IE
really has the ability to handle sessions efficiently?
Is there any patches available to fix the issue?
Any great workaround would be very much useful and appreciated.
TIA
RAJ.
"krisrajz" wrote:
> What's wrong with IE? or Do I need to disregard IE and to opt for other
> browsers?
>
> Is there any other programmable browsers available like IE?
>
> RAJ.
>
> "Dave Anderson" wrote:
>
> > Bob Barrows [MVP] wrote:
> > > The only way a browser can affect the ability to use sessions is by
> > > allowing/disallowing cookies.
> >
> > Within the same window, perhaps that is true. But Internet Explorer goes the
> > extra mile with the ability to prevent separate windows (or frames) from
> > sharing cookies with each other. And in a manner that's uncontrollable, no
> > less. Bravo, Microsoft!
> >
> >
> > --
> > Dave Anderson
> >
> > Unsolicited commercial email will be read at a cost of $500 per message. Use
> > of this email address implies consent to these terms. Please do not contact
> > me directly or ask me to contact you directly for assistance. If your
> > question is worth asking, it's worth posting.
> >
> >
> >
- Next message: steve_at_cronservice.co.uk: "Scheduling ASP Without Cron"
- Previous message: krisrajz: "Re: IE DOES NOT SUPPORT COOKIE on WIN2K and XP"
- In reply to: krisrajz: "Re: IE DOES NOT SUPPORT COOKIE on WIN2K and XP"
- Next in thread: Bob Barrows [MVP]: "Re: IE DOES NOT SUPPORT COOKIE on WIN2K and XP"
- Reply: Bob Barrows [MVP]: "Re: IE DOES NOT SUPPORT COOKIE on WIN2K and XP"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|