HTML5 离线缓存如何与 ASP.NET 配合使用?
我的 ASP.NET 应用程序中有 MasterPage.master
我的清单文件不起作用:
CACHE
MANIFEST CACHE:
MasterPage.master
请告诉我应该如何在我的清单文件中正确写入 MasterPage?
There are MasterPage.master in my ASP.NET application
My manifest file dose not work:
CACHE
MANIFEST CACHE:
MasterPage.master
Please, tell how should I correctly write MasterPage in my manifest file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该尝试缓存您的母版页。如果您想要缓存母版页使用的任何页面,请将清单属性添加到母版页上的 HTML 标记中。这样 HTML 页面就会被缓存。
如果您需要更多这方面的信息,我写了一篇关于 MVC 和应用程序缓存的文章 - 它应该可以为您提供对您想要实现的目标有一个很好的了解。
http://deanhume.com/Home/BlogPost/ mvc-and-the-html5-application-cache/59
同样,尝试 http://diveintohtml5.ep.io/offline.html
You shouldn't try and cache your Masterpage. If you want to cache any pages that the Master Page uses, instead add the manifest attribute to the HTML tag on your Master Page. That way the HTML page will be cached.
If you need more information on this, I have written an article about MVC and the Application Cache - it should give you a pretty good idea of what you are trying to achieve.
http://deanhume.com/Home/BlogPost/mvc-and-the-html5-application-cache/59
Similarly, try http://diveintohtml5.ep.io/offline.html