Reputation: 15501
My problem is that when I open web application from Outlook in a separate IE window, the ASP.NET session is lost. This is (as described in several places) because in-memory cookie is lost.
So it goes like this:
I think, maybe, if I pass ASP.NET session ID to new IE window, I can somehow "attach" to that session? Tell ASP.NET that this is the one that I need to be current?
Upvotes: 1
Views: 1256
Reputation: 16680
Cookieless Sessions might work for you. Using that technology, the session id is included in the URL in a format similiar to http://yourserver/folder/(session ID here)/default.aspx
Upvotes: 1
Reputation: 88044
Have you considered just getting rid of the session data to begin with?
Upvotes: 0