c# – Asp.net和文件修改?

我们正在更改文件并将其上传到Web服务器.

一劳永逸,我想知道更改文件将如何影响iis的Appdomain

我目前使用网站 – 所以我写的是我的知识.

Web应用程序中的值是什么?(X中的修改文件如何影响iis中的Appdomain?)

______________________________|_ Web Application _|___ Web Site _____________

changed Global.asax           |                   |     restarted 
                              |                   |
                              |                   |   
changed web.config            |                   |     restarted 
                              |                   |
                              |                   |
changed CS file               |                   |      nothing
                              |                   |
                              |                   |
changed Aspx file             |                   |      nothing
                              |                   |
                              |                   |
changed App_code(folder) file |                   |     restarted 
                              |                   |
                              |                   |
changed BIN(folder) dll file  |                   |     restarted 

最佳答案 修改以下任何项目时,应用程序池将被回收:

> web.config
> machine.config
> global.asax
> bin目录
> app_code目录

应用程序池可以出于其他原因而被回收,例如,通过明确地将其配置为在特定时间或在一定量的时间之后再循环.

修改静态文件(.js,.css,.html,.jpg等)不会触发循环,除非这些文件写入上述目录之一.

点赞