I'm creating a web-application in ASP.net, which i want to access offline. I need to store some static html-sites into the appcache. The only option i see is to load the appcache manifest file by extending the html-tag in Site.Master with the manifest attribute. But now every page i'm calling is getting stored into the appcache.
e.g. every .aspx-page like Default.aspx inherit the masterpage including the html-tag:
Site.Master
<html manifest="Manifest.appcache">
Manifest.appcache
CACHE:
Default_off.html
FALLBACK:
/Default /Default_off.html
finally the browser store my Default_off.html AND Default of Default.aspx. So even if i declare the FALLBACK, the page call the Default(.aspx) page.
Somebody knows how to avoid the page with the manifest attribute is getting stored in appcache or an alternative way so just the files declared in the manifest file are getting stored?!