Reading from this blog by Stephen Walther, I'd like to have my Create view post to my Insert action.
Stephen suggests that after my Insert action is done, to redirect to the user to another action. I guess I could redirect them to the Detail view of the object they just created, but I'm curious to know if there are other strategies to let the use know that they successfully submitted a valid object and that the object was saved to my database.
Specifically, I'd like to let the user know what they just did, and also prevent refreshes of the page from attempting to re-post the data. Ideally, I could do this without an intermediary page. Is there a cross-request ViewData that I can stuff this message into? Something similar?