Congratulations on those shiney new letters in your name. It is well
deserved. Keep up the good work.
"Steve C. Orr [MVP, MCSD]" <Steve@Orr.net> wrote in message
news:eiM5YI0kDHA.2772@TK2MSFTNGP10.phx.gbl...[color=blue]
> Well I don't know when "you'd expect" the Application_Start event to fire,
> but I know I don't expect it to happen very often. Under normal release
> conditions it should normally pretty much only fire after you reboot the
> server and someone requests the first page.
> The session will time out after 20 minutes of no page requests from the
> user.
> This default time interval is configurable in your web.config file.
> After the session times out the Session_End event will be called in your
> Global.asax file.
> You can terminate the session manually by calling Session.Abandon, but be
> aware this will cause the Session_End event to not be called. But that's
> not so bad. Just take your code from the Session_End event, put it in a
> separate function, then call that function from both your Session_End[/color]
event[color=blue]
> and whenever you call Session.Abandon. The Session_End event also won't
> fire when you hit the stop button in the VS.NET IDE. It also won't fire[/color]
at[color=blue]
> all if you're not using standard in proc sessions.
>
> Here's more details for you:
>
http://www.asp.net/Forums/ShowPost.a...=1&PostID=7504
>
> --
> I hope this helps,
> Steve C. Orr, MCSD, MVP
>
http://Steve.Orr.net
> Hire top-notch developers at
http://www.able-consulting.com
>
>
>
> "Max" <maximus@portvista.com> wrote in message
> news:R0ejb.114492$eS5.60668@twister.tampabay.rr.co m...[color=green]
> > I've noticed some procedures don't run in the global.asax when you'd[/color]
> expect[color=green]
> > them to. I've rebuilt and set break points, but Application_Start just[/color]
> isn't[color=green]
> > firing today. Is there some configuration that prevents this from[/color]
> happening?[color=green]
> >
> > I've never gotten Session_End to fire either.
> >
> > -M
> >
> >[/color]
>
>[/color]