Connecting Tech Pros Worldwide Help | Site Map
 
 
LinkBack Thread Tools Search this Thread
  #1  
Old May 23rd, 2006, 02:35 PM
Erik
Guest
 
Posts: n/a
Default ASP.NET Session ID

Hi,

i'm using a script to open a Dialog window by window.open();
in order to transfer data i'm using the Session object from the child to the
parent.
The problem is that in IE6 when the child window is opened, the SESSION ID
of that window is different from the SESSION ID of the Parent window.
I would like to know why is that and if there is a way to fix it.

Best regrds,
Erik
  #2  
Old May 23rd, 2006, 02:45 PM
Bob Barrows [MVP]
Guest
 
Posts: n/a
Default Re: ASP.NET Session ID

Erik wrote:[color=blue]
> Hi,
>
> i'm using a script to open a Dialog window by window.open();
> in order to transfer data i'm using the Session object from the child
> to the parent.
> The problem is that in IE6 when the child window is opened, the
> SESSION ID of that window is different from the SESSION ID of the
> Parent window.
> I would like to know why is that and if there is a way to fix it.
>[/color]
This is a classic asp group (see
microsoft.public.dotnet.framework.aspnet for asp.net questions) so I
tried to reproduce this using the classic asp page that appears below. I
was unsuccessful. The same session id appeared in both windows. My
suggestion would be to post a small repro (similar to the one I posted)
to the aspnet group, explaining which type of session state management
you are using: in-process or database.

<%
if len(session("test"))>0 then
Response.Write "session variable already has a value.<BR>"
else
Response.Write "setting session variable to ""a""<BR>"
session("test") = "a"
end if
%>
<HTML>
<BODY>
<div onclick = "window.open('sessiontest.asp')"
style="border:solid thin; cursor:hand"[color=blue]
>click me</div>[/color]

<%=session.SessionID%><BR>
<%=session("test")%>

</BODY>
</HTML>

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 205,338 network members.