Reporting form errors with ASP

S

Stogie

I have a form that submits survey results to a database. My contingency plan
is to have an error form that will display a message and allow them to submit
their ID to me via email by pressing a submit button.

Can I have it capture their ID via something like a confirmation field and
include it in the email? I would prefer for them to not to have to re-enter
it.

Thanks
 
S

Stefan B Rusynko

Yes w/ ASP (if the form is using Post) as say

strURL = Request.QueryString("ID")

If ID is the form field name on the send form page



| I have a form that submits survey results to a database. My contingency plan
| is to have an error form that will display a message and allow them to submit
| their ID to me via email by pressing a submit button.
|
| Can I have it capture their ID via something like a confirmation field and
| include it in the email? I would prefer for them to not to have to re-enter
| it.
|
| Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top