I'm in the process of building an asp.net (3.5) web app and was wondering if you knew of any way I could do it so that there would be some offline functionality.
This is needed as people will be able to 'install' the web app on their device (using the 'Add to home screen' function on an iPhone for example) and then use the app when they are offline; the usage would only be limited (there would be no need for server calls at this point either).
Can this be done with an .aspx page?
Edit- .manifest added:
CACHE MANIFEST
index.aspx
/logo.png
/main.css
/main.js
Edit no.2-
We have it working offline, in a fashion; it works when in safari but we don't want it in safari, we want it as a standalone app. When we try to run it like this we get the 'can't connect to server error'. Is this possible with a .aspx page?
Edit no.3 -
We've got this to work using a .html page but still not yet with an .aspx
Edit no.4-
It's now working, although we're unsure why! We added the index.aspx to the 'network' section of the cache.manifest last week (which didn't work last week!) which may have helped but once I know for sure I'll update you with what actually happened!
Thanks to all for your help!