Click here to Skip to main content
15,885,159 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
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 (30) its working, in IE (11 and i tested 10 in Emulation mode) not.

Manifest.appcache

HTML
CACHE MANIFEST
 # version 1

CACHE:
offline.html

NETWORK:

FALLBACK:
Default offline.html



Web.config
HTML
<staticContent>
  <remove fileExtension=".appcache" />
  <mimeMap fileExtension=".appcache" mimeType="text/cache-manifest" />
</staticContent>



Default

HTML
<html manifest="Manifest.appcache">


Also there is a "Fatal error of "AppCache"." in IE.

Any ideas or alternatives for IE?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900