I'm trying to provide an offline version of my asp.net website. So if i call my Default page it should load the offline.html. In Firefox its working, in IE (11 and i tested 10 in Emulation mode) not.
Manifest.appcache
CACHE MANIFEST
# version 1
CACHE:
offline.html
NETWORK:
FALLBACK:
Default offline.html
Web.config
<staticContent>
<remove fileExtension=".appcache" />
<mimeMap fileExtension=".appcache" mimeType="text/cache-manifest" />
</staticContent>
Default
<html manifest="Manifest.appcache">
Also there is a "Fatal error of "AppCache"." in IE.
Any ideas or alternatives for IE?