I have an asp.net mvc (1.0) app in production (IIS7.5, W2008), and need to update one of my data classes.
Can I simply replace t开发者_高级运维he existing DLL with the new one? Do I need to restart IIS, or will it get reloaded automatically?
MVC apps are just specially tuned web applications at heart so this will work presuming you aren't missing any other changes.
The app itself will "bounce" and some people might lose in-process sessions, but it will be loaded automatically.
精彩评论