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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top