1. When I run Script debugger and I start my ASP app, I put a breakpoint in the global.asa on the Session_OnEnd event.
But I see that this event fires when I start my application!
Why does this happen?

2. Also, On most of my pages I retrive or save data to a SQL database, Currently I have a Connection string in a include file that I include on all my pages. Is it better to just put my Connection string in the Global.asa's Session_OnStart ??

3. Do I need to close my connectionstring in the Session_OnEnd?

4. Can I put Include files in my Global.asa?

5. How do I declare my ADO constants in my global.asa?