Global.asax II

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

talking about Global.asax events, does anyone know if there's an event that
fires just before the code of a page is executed, and with the Session
available? I've tried ApplicationRequest, but the sessions weren't available
at this time.

I'd like to validade if a user can access a page, and this information is
stored in Session.

Thanks
 
I think your only choice is Application_PreRequestHandlerExecute, which is
the earliest sessions become available.

Karl
 
Thanks, Karl, this one gonna work for me.

Karl Seguin said:
I think your only choice is Application_PreRequestHandlerExecute, which is
the earliest sessions become available.

Karl
 
Back
Top