B
Brave
I currently use the following to redirect to an error page if a
certain form field is not filled out.
If Request.Form("FORM_FIELD_1") = "Yes" AND Request.Form
("FORM_FIELD_2") = "" Then
Response.Redirect("FORM_ERROR_PAGE.asp")
End If
I have a situation now where I need to submit form data to one of two
pages based on field values.
Can I use this code to submit form data to one of two pages? I do not
know the proper code, but something like
If Request.Form("FORM_FIELD_1") = "Yes" AND Request.Form
("FORM_FIELD_2") = "" Then
SUBMIT_TO("FORM_PROCESS_PAGE.asp")
End If
Any sample code to solve my problem would be a huge help.
Thanks for your time.
certain form field is not filled out.
If Request.Form("FORM_FIELD_1") = "Yes" AND Request.Form
("FORM_FIELD_2") = "" Then
Response.Redirect("FORM_ERROR_PAGE.asp")
End If
I have a situation now where I need to submit form data to one of two
pages based on field values.
Can I use this code to submit form data to one of two pages? I do not
know the proper code, but something like
If Request.Form("FORM_FIELD_1") = "Yes" AND Request.Form
("FORM_FIELD_2") = "" Then
SUBMIT_TO("FORM_PROCESS_PAGE.asp")
End If
Any sample code to solve my problem would be a huge help.
Thanks for your time.