What are the Global.asax methods when triggered and good practices?

2

I would like to know what methods, when they are fired, and what best (good practices) apply to them?

    
asked by anonymous 05.03.2015 / 18:44

1 answer

5

The Global.asax file derives System.Web.HttpApplication . Her source is here .

The methods of HttpApplication are here . I do not know if it's worth explaining one by one in this answer already having this documentation in hand.

See Also Events , which should be even more useful than the methods part.

    
05.03.2015 / 18:53