Asp.net&文件修改?

时间:2012-10-14 08:54:07

标签: c# asp.net .net iis-7 appdomain

我们正在更改文件并上传到网络服务器。

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

我目前正在使用网站 - 所以我是根据我的知识撰写的。

web Application中的值是什么?(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 

1 个答案:

答案 0 :(得分:2)

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

  • 的web.config
  • machine.config中
  • 的global.asax
  • bin目录
  • app_code目录

可以出于其他原因回收应用程序池,例如,通过明确将其配置为在特定时间或在一定时间之后回收。

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