Skip to main content
SCE Documentation

Caching

Caching can be an issue in SCE, especially with the navigation manager. You will need to disable it to prevent previous data from loading. To do this create a Web.config file in the directory "/Plugins/SCE/Content" and the following code will be what's in the file:

<?xml version="1.0"?>
<configuration>
	<system.webServer>
		<staticContent>
			<clientCache cacheControlMode="DisableCache"/>
		</staticContent>
	</system.webServer>
</configuration>