Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
That simply isn't true. The session end event cannot possibly fire when the user closes the browser as the server isn't notified. The session will eventually timeout when it is due to expire (and the user may also start a new session when they submit another request to the server).But in ASP3, if you use a session variable, then close the browser, session variable is cleared.
Not true. As I said before, nothing is sent back to the server so how would it possibly know???If the browser is closed, the session expires.
Which proves my point above as how can the session have ended if the session on end didn't fire?It doesn't trigger a session end in the global.asa file
The session variable will be null as you have initiated a new session with the server, and therefore the variable for the new session has not been set and doesn't exist (hence being null).the session var is null when you start the browser up again and try linking to the asp3 app
Nope. You just initiated a new session.So ASP3 did lose the session var when the browser closed.