App cache does not work on internet explorer

0

Good morning I am developing a web app on asp net mvc, which has certain modules offline, I developed it using the api of html5 for offline mode. including an .appcache file like this: offline.appcache

CACHE MANIFEST
# 2014-09-15:v1.1

# Explicitly cached 'master entries'.
CACHE:
/Content/static/images/Disconnect.png
/Language.xml
/Scripts/bootstrap.js
/Scripts/bootstrap.min.js
/Scripts/jquery-3.2.1.js
/Scripts/jquery-3.2.1.min.js
/Scripts/jquery.validate.js
/Scripts/jquery.validate.min.js
/Scripts/jquery.validate.unobtrusive.js
/Scripts/jquery.validate.unobtrusive.min.js
/Scripts/modernizr-2.6.2.js
/Scripts/respond.js
/Scripts/respond.min.js
/Scripts/Workers.js
/Scripts/Site.js
/Content/static/css/Site.css
/Home/Index
/ShippingPickTicket
/ShippingOffline
/SetLocation


# Resources that require the user to be online.
NETWORK:
*

FALLBACK:
/Error.cshtml

and I included it in the html in this way

<!DOCTYPE html>
<html manifest="/Manifest/offline.appcache">
<head>
   <meta charset="utf-8" />
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Bundle Shipping</title>
   @Styles.Render("~/Content/static/css/css")
   @Scripts.Render("~/bundles/modernizr")
</head>
<body>

   @Scripts.Render("~/bundles/jquery")
   @Scripts.Render("~/Scripts/jquery.validate.min.js")

I try it in google Chrome and it works perfectly but when I try to run it in internet explorer it gives me a series of errors in the console

stack trace of the internet explorer console

  

Creating AppCache with manifest: ' link '.

     

Resource does not exist on the server: ' link '.

     

AppCache Fatal Error

    
asked by Martin Chinome 12.02.2018 в 16:33
source

0 answers