January 17, 2004 at 3:17 am
I have a four page registration page.
I would like to be able to keep storing user data in db after each page is filled out however, if the connection is lost when the user is on page two or page three. How do I keep this. I know this is a method using timestamp. Does anyone have examples or name of a site where it has been implement in ado.net or ado. I am working in C#. Thank you.
January 20, 2004 at 8:00 am
This was removed by the editor as SPAM
January 20, 2004 at 12:26 pm
I am sure you can use the disconnected feature of ADO.NET implemented using Datasets.
You can store all the data in the dataset and then in the end post all the data at one go. Alternatively u can post data in the database at each page and refresh your dataset.
I hope this helps
You have to dig for tons of dirt to get an ounce of Gold
January 20, 2004 at 12:33 pm
You don't really want to use the timestamp type, rather a datetime marked at the time or some flag that indicates where they were. I'd post the data and insert/ update the database after each page and mark a flag somewhere that says page 1, 2, whatever.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply