When is Application_End called in asp.net WebService
问题 When exactly does the Application_End fire in the case of a WebService ?? I read (Application_End global.asax) that the Application_End is called everytime the application is unloaded. Does this mean after every call to a method in a web service ? I have a piece of code that I need fired only once on the first call to the IIS, and again after the last call to the IIS (and between recycles), and I can't have it being fired upon every WebService request and response... 回答1: Application_End is