-1

very new to ASP.NET Web Forms but ok with the others. Im just curious what the equivalent to "cache.manifest" in ASP.NET WebForms?

Thank you

ps. I was looking into <%@ OutputCache Duration="60" VaryByParam="*" %> am i on the right lines? if so, can you explain? thanks

user2681625
  • 131
  • 3
  • 18

1 Answers1

0

cache.manifest is a feature of HTML5 and separate from HTTP and ASP.NET caching.

You can still use cache.manifest in ASP.NET Web Forms.

Lloyd
  • 29,197
  • 4
  • 84
  • 98
  • how do I use it in ASP.NET Web Forms? It seems to be all about – user2681625 Aug 14 '13 at 09:05
  • Nominally you would just output the required markup just like pure HTML, however some web controls probably won't take kindly to it you'd have to try it on a case by case basis. – Lloyd Aug 14 '13 at 09:05
  • I'll pass on this article for you as well - http://stephenwalther.com/archive/2011/01/26/creating-html5-offline-web-applications-with-asp-net – Lloyd Aug 14 '13 at 09:09