Hello,

I am using ASP/VBScript. For some reason, Firefox will not pass my session
variables, while IE and Netscape will. I can't imagine what's wrong.

I was able to recreate the problem with the two test pages below. I tested
these pages in the three aformentioned browsers:

FFTEST1.ASP

<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Page 1</title>
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
</head>
<body>
<% Session("fftest") = "Hello!" %>
<p><a href="fftest2.asp">Go to second page >>></a></p>
</body>
</html>


FFTEST2.ASP

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Page 2</title>
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
</head>
<body>
<% = Session("fftest") %>
</body>
</html>


What could the problem possibly be?

Thanks for any help you can give.

Chris Smith

Re: Session Variables in Firefox by Anthony

Anthony
Thu Aug 10 03:52:55 CDT 2006


"Chris Smith" <chrissmith@discussions.microsoft.com> wrote in message
news:B4F5622C-D900-4CCD-BFCA-4C3E7B20ADDA@microsoft.com...
> Hello,
>
> I am using ASP/VBScript. For some reason, Firefox will not pass my
session
> variables, while IE and Netscape will. I can't imagine what's wrong.
>
> I was able to recreate the problem with the two test pages below. I
tested
> these pages in the three aformentioned browsers:
>
> FFTEST1.ASP
>
> <html>
> <head>
> <meta http-equiv="Content-Language" content="en-us">
> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> <title>Page 1</title>
> <meta name="GENERATOR" content="Microsoft FrontPage 6.0">
> <meta name="ProgId" content="FrontPage.Editor.Document">
> </head>
> <body>
> <% Session("fftest") = "Hello!" %>
> <p><a href="fftest2.asp">Go to second page >>></a></p>
> </body>
> </html>
>
>
> FFTEST2.ASP
>
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> <title>Page 2</title>
> <meta name="GENERATOR" content="Microsoft FrontPage 6.0">
> <meta name="ProgId" content="FrontPage.Editor.Document">
> </head>
> <body>
> <% = Session("fftest") %>
> </body>
> </html>
>
>
> What could the problem possibly be?
>

Take a look at the privacy options does it allow sites to set cookies.
Session variables depend on a session cookie for identification.


> Thanks for any help you can give.
>
> Chris Smith



Re: Session Variables in Firefox by chrissmith

chrissmith
Thu Aug 10 09:38:03 CDT 2006

WOW! That was the problem! I didn't know that.

Thanks for taking the time to help me, Anthony. It's much appreciated.

Chris Smith

"Anthony Jones" wrote:

>
> "Chris Smith" <chrissmith@discussions.microsoft.com> wrote in message
> news:B4F5622C-D900-4CCD-BFCA-4C3E7B20ADDA@microsoft.com...
> > Hello,
> >
> > I am using ASP/VBScript. For some reason, Firefox will not pass my
> session
> > variables, while IE and Netscape will. I can't imagine what's wrong.
> >
> > I was able to recreate the problem with the two test pages below. I
> tested
> > these pages in the three aformentioned browsers:
> >
> > FFTEST1.ASP
> >
> > <html>
> > <head>
> > <meta http-equiv="Content-Language" content="en-us">
> > <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> > <title>Page 1</title>
> > <meta name="GENERATOR" content="Microsoft FrontPage 6.0">
> > <meta name="ProgId" content="FrontPage.Editor.Document">
> > </head>
> > <body>
> > <% Session("fftest") = "Hello!" %>
> > <p><a href="fftest2.asp">Go to second page >>></a></p>
> > </body>
> > </html>
> >
> >
> > FFTEST2.ASP
> >
> > <html>
> > <head>
> > <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> > <title>Page 2</title>
> > <meta name="GENERATOR" content="Microsoft FrontPage 6.0">
> > <meta name="ProgId" content="FrontPage.Editor.Document">
> > </head>
> > <body>
> > <% = Session("fftest") %>
> > </body>
> > </html>
> >
> >
> > What could the problem possibly be?
> >
>
> Take a look at the privacy options does it allow sites to set cookies.
> Session variables depend on a session cookie for identification.
>
>
> > Thanks for any help you can give.
> >
> > Chris Smith
>
>
>