This topic is locked

How do I Edit/Save record many times, then click Submit and no edits a

12/24/2007 2:55:39 PM
ASPRunnerPro General questions
J
JAT author

Greetings!
I have an online form that users are registering/login in to enter their data. I'd like to be able to have the users click a button to save their "in progress" form answers until they choose to click a "finalize and submit" button. Once the "finalize/submit" button is clicked, then record is locked and can not be edited again. I can't figure out how to do this (multiple tables? custom code?). I would like applicants to be able to continue to log in to print/view their answers even after their ability to edit has been removed. Please help?

Sergey Kornilov admin 12/28/2007

I think this can be implemented via additional Status field and a set of events.
Implement BeforeProcess event on the Edit page where you can check the current value of Status column and display "Record is locked" message.

...

if rstmp("Status")="Locked" then

Response.Write "Record is locked"

Response.End

end if