I have an ASP.NET master page which references a #include file as follows:
<!--#include virtual="/includes/scripts.inc"-->
I have modified the file /includes/scripts.inc but the changes do not show up in pages. What needs to be done so modifications will be reflected?
I need to avoid the following:
- restarting the server
- restarting IIS
- modifying web.config (doesn't appear to have any effect)
- pretty much anything that causes the app domain to restart
Any other options? Is there a setting which affects how long IIS caches #include files?