PDA

Click to See Complete Forum and Search --> : Global.asa???


wernerh
May 21st, 2001, 09:11 AM
When is the global.asa file used?

If I Put a response.write and then a response.end in the Session_Onend procedure it never gets executed!
But it does work in the session_onstart??????

Sastraxi
May 21st, 2001, 09:16 AM
Session_OnStart - A user starts to access your website.

Session_OnEnd - A user exits your website.

Useful for updating counters and the like.
Global.ASA cannot output any HTML/Text.

Cander
May 21st, 2001, 09:47 AM
Session_OnEnd - A user exits your website.


Wrong. It fires when a session ends. Which the wy IIS works is not until the Session times out NOT when the user leaves the site unless you specifically call the code Sesion.Abandon when the leave.

Sastraxi
May 21st, 2001, 11:57 AM
Really? I was under a false impression :(

Have you noticed also that the avatars have disappeared?

Cander
May 21st, 2001, 02:40 PM
HEY WHERES MY AVATAR???? Hurumph..

HarryW
May 21st, 2001, 04:52 PM
If you read the forum feedback you'll see why they're not there.

You can set the time it takes for the session to time out if you want. I think the default is about 20 minutes or so.