hi, I have the following scenario. I have a form that takes certain input. This in effect goes through certain validations. Now what I want to do is in case of validation errors a seprarte page is displayed that lists all the errors, and asks the user to continue submitting the data ignoring the errors, or to go back to the form and change the data. My question is how do i submit the data from my error page (which is a different page), in case the user chooses to continue to submit ignoring the errors.
So the flow is like this form submit-> if errors - >error page - >if continue ->submit data and store in Database. This continue functionality is what im unable to achieve because I dont know how to resubmit the same form values from the error page. Any clues?? -- Puneet