web.config fires application_start

  • Thread starter Thread starter barak
  • Start date Start date
B

barak

Hi.
I noticed that when I change the timeout of the session
in web.config, the event application_start in global.asax
is raise, although I make no compilation.
is it normal?
is there a way to change the session timeout without
firing the application_start event>
thanks
Barak
 
barak said:
Hi.
I noticed that when I change the timeout of the session
in web.config, the event application_start in global.asax
is raise, although I make no compilation.
is it normal?
is there a way to change the session timeout without
firing the application_start event>

Yes, from code:
Session.TimeOut=Whatever
 
Back
Top