views:

16

answers:

1

Hi,

what is the suggested way to make web app see new configuration in web.config ?

  • restart IIS
  • stop/start app pool
  • recycle app pool
  • custom web page that does something in code?

Thanks,Pawel

+4  A: 

You don't have to do anything: when the web.config file is modified, ASP.NET will automatically recycle the AppDomain and the application will reload the file.

Dean Harding