While filling out a form, some websites like GMail offer an auto save feature that automatically saves the form filled out so far to the database.
If I have to implement that in my MVC 4 application, how do I do that?
I'm thinking of options but I can't find any other than write some JavaScript code myself to make an Ajax call and send data to the server in JSON format and on the server side, respond by having an action on the controller accept that JSON data, deserialize it and save the incomplete data to the database.
But all this seems like a lot of work. I am assuming there should be an easier way.