Here's the situation.
- A user goes to the #new action, clicks submit form, and the object is created. The user is shown the show page
- The user realizes something is wrong, so they click back (even though there's clearly an edit button there)
- The user fixes whatever needs fixing and clicks submit again, thus creating a new object
What I want to do is have the user directed to the edit action when they click back on the show page. It's also got to be IE 7+ compliant. Is this possible?
Another alternative I was considering was creating a random string on a hidden field on the #new page, and using that to check whether the object's already been created.
Thoughts?