Answered by:
web.config

Question
-
User124127460 posted
I have a query , when I make any changes to web.config of a running appliction, what impact will it have?
I guess it doesn't compile the site again, but some event(Application end?) is called , I am not sure.
Wednesday, September 4, 2013 2:03 AM
Answers
-
User71929859 posted
when I make any changes to web.config of a running appliction, what impact will it have?It will recycle the application pool.
but some event(Application end?) is calledYes, that's right. Check the below thread
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Wednesday, September 4, 2013 7:20 AM
All replies
-
User-1716253493 posted
I hope this can help you http://msdn.microsoft.com/en-us/library/ackhksh7.ASPX
Wednesday, September 4, 2013 2:35 AM -
User1607087669 posted
hello
anand
Changes to configuration settings in Web.config files indirectly cause the application domain to restart. This behavior occurs by design. You can optionally use theconfigSource attribute to reference external configuration files that do not cause a restart when a change is made.
for more info you can
http://msdn.microsoft.com/en-us/library/ms228058.ASPX
Wednesday, September 4, 2013 3:06 AM -
User-37275327 posted
Check what the microsoft says.
Wednesday, September 4, 2013 4:00 AM -
User71929859 posted
when I make any changes to web.config of a running appliction, what impact will it have?It will recycle the application pool.
but some event(Application end?) is calledYes, that's right. Check the below thread
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Wednesday, September 4, 2013 7:20 AM