Session_Start

  • Thread starter Thread starter Alberto
  • Start date Start date
A

Alberto

I'd like to write some code in the Session_Start event of the global.asax
but it doesn't work.

Actually I'm writting this in the Global.asax.cs (In C#):

protected void Session_Start(Object sender, EventArgs e)
{
...
}

I inserted a breakpoint inside but it isn't never fired.
I'm doing something wrong?

Thank you very much
 
it should at least break into the debugger. Are you running in release mode
by chance?
 
Back
Top