views:

96

answers:

2

I want to redirect the user to another page to fill out a captcha but i would like to keep the post data. When/if the user succeeds i like to add an captchaPass=true and would like access the post data and continue processing. Right now i am using redirects but ATM i am not required to use it.

Is it possible to carry the post data? keep in mind i may the user access multiple pages so separating data and not having a mixup is necessary

+2  A: 

Sure, just write the form data out to the captcha page in hidden elements with the additional captcha fields added to the form. Have your submit action post the whole thing back to the original. Using ASP.NET it's probably easier to have the captcha written to the same page with the form fields hidden, but you can do cross-page postbacks as I've described above.

tvanfosson
+1  A: 

Cross Page Posting might help you.

Canavar