I see...
so Session variables initialized/assigned/manip
would to confirm the following:
--session variables created from a webform would be page specific, hence destroyed when the page is closed/unloaded...
--session variables created from a global asax's event's would specific to the instance of an entire web app...
thanks...
Main Topics
Browse All Topics





by: Juan_BarreraPosted on 2008-11-05 at 00:45:42ID: 22883978
Hi praetorean,
In ASP.NET, when the user closes the browser, the Session items stored in the HttpSessionState object are automatically deleted, because the mentioned object is unique per session, so, basically, you don't have to do anything.