Modifications of Asp.net and files?

We change the file and upload it to the web server.

Once and for all, I would like to know how file changes will affect iis Appdomain

I am currently using a website. Therefore, I wrote my knowledge.

what will be the values ​​in web Application ? (how will modified files in X affect Appdomain in iis?)

 ______________________________|_ 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 
+4
source share
1 answer

The application pool is processed when any of the following elements changes:

  • web.config
  • machine.config
  • global.asax
  • bin directory
  • app_code directory

An application pool can be reused for other reasons, for example, by explicitly setting it up for reuse at a specific time or at a specific time.

Changing static files (.js, .css, .html, .jpg, etc.) will not lead to processing if these files are not written to one of the directories mentioned above.

+2
source

Source: https://habr.com/ru/post/1439626/


All Articles