Re: Session_End Pop Up
- From: "Marina" <someone@xxxxxxxxxx>
- Date: Thu, 22 Dec 2005 16:09:57 -0500
Session_End is a server side event. There is no way to communicate anything
back to the client. HTTP is stateless. Once the user received the results of
their request, that's it. There is no way to send any data to the user.
There is no way to pop open windows, or redirect them, or anything like
that.
You can either wait until their next request, see that they have a new
session, or are not authenticated, or whatever, and then either redirect
them, or send down javascipt to pop open a new page.
Or, you can have a javascript timer going off after the page loads that
waits until the same amount of time has passed as the length of the session,
and then does a redirect or whatever.
"chuckdfoster" <chuckdfoster@xxxxxxxxxxx> wrote in message
news:uA%231HqzBGHA.1008@xxxxxxxxxxxxxxxxxxxxxxx
>I want a pop up to appear when the user's session ends. I've tried putting
>some code in the Session_End sub in the global.asax, but must be using
>wrong code or something. I could also just redirect them to a "timed out"
>page, but I can't get that to work either. Can anyone help?
>
> Thanks,
>
>
> --
> Chuck Foster
> Programmer Analyst
> Eclipsys Corporation - St. Vincent Health System
>
.
- References:
- Session_End Pop Up
- From: chuckdfoster
- Session_End Pop Up
- Prev by Date: Re: using databinding to codebehind in html
- Next by Date: RE: Net runtime crash
- Previous by thread: Session_End Pop Up
- Next by thread: Re: 101 Question - Passing a value from one page to another
- Index(es):
Relevant Pages
|