Other issues or features related to Microsoft Edge on Windows 11
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Windows 11, Surface Pro 9, Surface Go 3, and iPhone 15 Pro iOS26.5
My web site was recently updated. When I look at it with my devices (above), some of the pages don't show the changes. When others look at it, all of the changes show up for them.
I have cleared the cache on Edge, Chrome, and Safari. I don't know what else to do.
Please help.
-- Sandy
Other issues or features related to Microsoft Edge on Windows 11
AI answer
The issue is almost certainly stale cached content that is not being fully cleared on the affected devices, especially in Microsoft Edge/WebView-based scenarios.
Try the following steps in order on a Windows device using Edge, then repeat similar steps on Chrome/Safari:
edge://settings/clearBrowserData.Cache-Control: "private, no-cache, no-store"Pragma: "no-cache"Expires: "-1"web.config snippet for static content can look like:
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="0.00:00:00" cacheControlCustom="must-revalidate" />
</staticContent>
</system.webServer>
This ensures that when pages are updated, browsers are forced to re-download them instead of using stale cached versions.If the site always shows correctly for other people and in InPrivate/Incognito, but not in a normal session even after clearing cache and cookies, the remaining causes are almost always:
Testing on a different network (e.g., mobile hotspot) and a fresh browser profile can help confirm that.
References: