Hi,
I'm knocking together a wizard like web app that will take input in a form and conditionally redirect to a confirmation page if the item entered already exists. Something along the lines of
"there is already a product in the system with that name are you sure you wish to continue?".
I can have an action "Confirm" on my controller for this but this action should only ever be called by the initial "Add" action.
My question is, what's the best way to control controller action call order. Obviously someone could enter the //Confirm url and spoof the data.
Hope I'm making sense.
Thanks,