Let's talk about standard data editing.
I have a read-only form with data from a database.
When I click the Edit button it opens a new form with the same data but read/write.
Then I click the Save button and it executes an asp to save the data. Here I must use submit().
Then I redirect the page to the first read-only form.
I'd like to avoid that user can use the Back button for any of this 3 asp pages.
I know there is a location.replace() javascript function, but I miss the submited data from the submit() function.
Is there a way to submit data to a new page and avoid the page to be saved in the history object?
I have a read-only form with data from a database.
When I click the Edit button it opens a new form with the same data but read/write.
Then I click the Save button and it executes an asp to save the data. Here I must use submit().
Then I redirect the page to the first read-only form.
I'd like to avoid that user can use the Back button for any of this 3 asp pages.
I know there is a location.replace() javascript function, but I miss the submited data from the submit() function.
Is there a way to submit data to a new page and avoid the page to be saved in the history object?