I have a web form, that needs to save the data that the user enters, into a file and on the client pc, that will also be able to read from the saved file and repopulate the fields at a later time. No files will be saved to the server side, so I expect streaming needs to be involved at writing time.
I decided XML would be an easy way to do this, but I’m stymied on methodology. XML documents? XML Writers? I’m stumped on the right search terms to even get what I want.
Thanks in advance for any pointers.
You’ll want to use XML serialization. Take a look at this [MSDN article][1]. Here’s an excerpt on serialization and deserialization: