I'm setting a simple session variable with this script to let me know the next time a person comes to the home page to not display the Flash component:
<%
Session("flash") = "played"
%>
That works fine. But when I run this code to read it in IE the first time, it doesn't output anything until I rerun this exact same code then it spits out the correct response:
<%
If Session("flash") = "played" Then
Response.Write("&flash=played")
End If
%>
This all works great in Firefox every time. The code above exist in 2 separate files and is the only code in each respective file.
Any ideas or places to point me in the right direction would be very much appreciated. I've searched for an answer but either one I'm the only one this has happened to or I'm searching for the wrong thing.
Thanks.
Bob
<%
Session("flash") = "played"
%>
That works fine. But when I run this code to read it in IE the first time, it doesn't output anything until I rerun this exact same code then it spits out the correct response:
<%
If Session("flash") = "played" Then
Response.Write("&flash=played")
End If
%>
This all works great in Firefox every time. The code above exist in 2 separate files and is the only code in each respective file.
Any ideas or places to point me in the right direction would be very much appreciated. I've searched for an answer but either one I'm the only one this has happened to or I'm searching for the wrong thing.
Thanks.
Bob