X
xkeops
Not sure what to do, I am asking your advice to this.
I have an app in c# 2.0. When I run this app from vs.net it goes at :
http://localhost:39950/myApp/
But if I run it normally it goes at : http://localhost/WebDir/myApp/
In myApp I use in global.asax:
protected void Application_BeginRequest(Object sender, EventArgs e)
{
EventLog.WriteEntry("Application_BeginRequest", "Application Begin
Request!", EventLogEntryType.Information);
................
}
When I access: http://localhost:39950/myApp/ Application_BeginRequest
does fire.
Why http://localhost/WebDir/myApp/ doesn't fire BeginRequest event in
global.asa ???
Thanks
I have an app in c# 2.0. When I run this app from vs.net it goes at :
http://localhost:39950/myApp/
But if I run it normally it goes at : http://localhost/WebDir/myApp/
In myApp I use in global.asax:
protected void Application_BeginRequest(Object sender, EventArgs e)
{
EventLog.WriteEntry("Application_BeginRequest", "Application Begin
Request!", EventLogEntryType.Information);
................
}
When I access: http://localhost:39950/myApp/ Application_BeginRequest
does fire.
Why http://localhost/WebDir/myApp/ doesn't fire BeginRequest event in
global.asa ???
Thanks