I am trying to redirect the user to a offline page when he is disconnected but i have a problem.
I noticed that the manifest file is never loaded by the browser
this is my manifest attribute
<html lang ="fr" manifest="@Url.Action("Manifest","Acceuil")">
this is my response with fiddler when i ask the url directly
HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/cache-manifest; charset=utf-8
Server: Microsoft-IIS/10.0
X-AspNetMvc-Version: 5.2
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Sat, 23 Jul 2016 16:08:42 GMT
Content-Length: 216
and this is my manifest
CACHE MANIFEST
CACHE:
FALLBACK:
/ /OffLine/Index
NETWORK:
*
my window.applicationCache value is always equal to uncached
how can i do to fix my problem ?
thank you