I am having an web application in ASP.NET which allows users to enter data and the data will be stored in the remote SQL Table. I want to implement a functionality that will enable uses even to post the data when they are offline.
When the users are offline they can enter data and save them and it needs to be stored in the cache. However when the system gets connected to the internet, i need to retrieve the data saved by the user which is in cache and save it to my remote SQL table.
Can anyone let me know how can I implement this?
From this post `Build an ASP.Net web app with offline functionality its clear we can have offline functionality that will store the data in the application cache. However I also want to save the values entered by the user to my database. I want to know how to do that part.