C
Chris
Hi,
I entered some logging-stuff in global.asax :
namely in Application_Start(), Application_End(), Session_Start() , etc
....
When I start the ASP.NET app from within Visual Studio does it Log very
nicely
Application_Start,
Application_BeginRequest ,
Session_Start,
Application_EndRequest
Refreshing the page in the browser :
Application_BeginRequest ,
Application_EndRequest
Starting a second browser (while the first browser is still open) :
Application_BeginRequest ,
Session_Start,
Application_EndRequest
==> so NO Application_Start() --> OK
but then ... closing the first browser --> no logging at all
==> so NO Session_End ???
closing the second browser --> no logging neither
==> so NO Session_End ??? NOR Application_End() ???
how come ?
starting a browser again :
Application_BeginRequest ,
Session_Start,
Application_EndRequest
==> NO Application_Start ???
does it mean that the app is still active in the background ?
thnx
Chris
I entered some logging-stuff in global.asax :
namely in Application_Start(), Application_End(), Session_Start() , etc
....
When I start the ASP.NET app from within Visual Studio does it Log very
nicely
Application_Start,
Application_BeginRequest ,
Session_Start,
Application_EndRequest
Refreshing the page in the browser :
Application_BeginRequest ,
Application_EndRequest
Starting a second browser (while the first browser is still open) :
Application_BeginRequest ,
Session_Start,
Application_EndRequest
==> so NO Application_Start() --> OK
but then ... closing the first browser --> no logging at all
==> so NO Session_End ???
closing the second browser --> no logging neither
==> so NO Session_End ??? NOR Application_End() ???
how come ?
starting a browser again :
Application_BeginRequest ,
Session_Start,
Application_EndRequest
==> NO Application_Start ???
does it mean that the app is still active in the background ?
thnx
Chris