Session time out event?

  • Thread starter Thread starter Kavvy
  • Start date Start date
K

Kavvy

Is there an event that triggers when a Session times out?

I want the Intranet site I'm developing to automaticaly inform the user that
they have been logged off.

Thanks,
Rich.
 
Kavvy said:
Is there an event that triggers when a Session times out?

Session_End in global.asax or your whatever HttpApplication you're using.
I want the Intranet site I'm developing to automaticaly inform the
user that they have been logged off.

This will also require a client-side time-out.

Cheers,
 
Hi,

Session.Abandon does that.

Now to inform the user you have to set a timer or something similar to show
in the browser.

cheers,
 
Back
Top