Question

I have made changes to my global.asax file so i want to recycle my web application to make the changes work. How to safely recycle my asp.net web application in production server? Any ideas..

Was it helpful?

Solution

Just upload the new global.asax - the next time a visitor starts a new session, the app will call the new code automatically.

OTHER TIPS

In IIS, you can recycle the Application Pool for your application.

In IIS 7: go into Application Pools, right-click your application's Application Pool and click 'Recycle...'.

If you're worried about not killing users' sessions, etc, then I'm not sure it's possible.

Directly upload the asax file over the server instance and it would work as expected.

A new AppDomain would be created when you upload the new global.asax file in the site and this would be used for any new requests arriving at the server and for existing requests the earlier version would remain active as lon as the session's active.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top