Can I use the cache manifest file with MVC2

Can I write an ASP.NET MVC2 application that uses the Cache Manifest mechanism to support offline processing? I know this may seem like a contradiction, but I have an MVC2 web application and am looking for an attempt to make it resistant to unreliable network connections.

+3
source share
2 answers

Of course it is possible. HTML5 storage is server-side technology independent. Here is an example with ASP.NET . In this example, the illustrated custom IHttpHandlercan be easily replaced by the action of the controller in an ASP.NET MVC application.

+3
source

, , .

+1

All Articles