session id in popup widow

  • Thread starter Thread starter Holly Li
  • Start date Start date
H

Holly Li

Hi,
My vb.net application has set "cookieless=true".
When I open a .aspx page in a popup window using
javascript "window.open("source_url")", The popup page
has a SessionID that is different from its parent page. I
am using SQL server to store session data and using
SessionID as the key. Since new sessions are created for
popup pages, I am having problem using session data in
the popup pages. Did I do something wrong? Thanks.
 
when you use cookieless sessions, the session id is encoded in the url root.
as long as you use relative urls you should be ok, if the url is not
relative, then you need to do the session url munge.

-- bruce (sqlwork.com)
 
Back
Top