Need a way for users to enter data while offline and re-submit it when back online
Posted
by crankharder
on Stack Overflow
See other posts from Stack Overflow
or by crankharder
Published on 2010-05-29T20:26:39Z
Indexed on
2010/05/29
20:32 UTC
Read the original article
Hit count: 368
As part of a larger webapp, I want to build functionality that allows a user to enter data while offline -- and then send that data back to my site when they have a connection again
The parts that, to me, are missing ar
- Saving a certain set of data in their browser
- Saving a form that allows them to enter data
- using form from step#2 to update data from step#1
- getting data out of the local data store and sending it back to the server
I would like to keep this entirely within the browser, so...
Does HTML5 meet some (or all) of those goals as it's currently implemented in webkit/ff3?
If not,what technologies should I start looking into in order to accomplish all of the above.
© Stack Overflow or respective owner