asp.net - Synchronizing storaged data between web forms application and mobile client -
context: have web forms application using entity framework store objects in sql server express localdb. work offline on mobile client's browser, utilize manifest file , need synchronize stored data.
approach: mentioned in this stackoverflow article, utilize local storage of mobile browser, avoid creating mobile app , remain platform independent.
question: how accomplish synchronize , map stored info of sql server local storage easily? there maybe approach?
i'd appreciate input.
my solution: by using json.net , indexeddb
an expensive way solve problem using json.net library , indexeddb (localstorage works too). serialize required objects in code-behind, pass them on hidden field javascript, deserialize them , utilize them json-objects. updating sql-db, need go same way backwards.
not best, solution
asp.net sql-server mobile webforms local-storage
No comments:
Post a Comment