Does the Application_Start in global.asax called when the new published code is kept in IIS web root for the project,
Does the Application_Start in global.asax called when the new published code is kept in
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Application_Starttriggers everytime the application pool is recycled which normally happens when you update some of the files in the bin folder or web.config. So if you republish your site and update some of those files IIS will unload the application andApplication_Startwill fire next time a request comes in.