How do I disable caching of an individual file in IIS 7 using weserver config settings
问题 Is there any way to diable the caching of a single javascript file in my ASP.NET applicaiton without disabling the caching of any other files in the application? It is running on IIS 7 in Azure, so to me it seems that my only options of controlling this are within the webserver tags. I currently use the folowwing config, but this is disabling cache on all files. <modules runAllManagedModulesForAllRequests="true"/> <staticContent> <clientCache cacheControlMode="DisableCache"/> </staticContent>