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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top