I have 3 radio buttons. Each radio btn has a set of related text boxes. If the radio btn is selected, the corresponding text boxes are required fields. This has to be done in FrontPage 2000 - employer requirement.
The other required fields on the form are always required and use FrontPage's built in validation. I have VBScript validation on the form, but it is not working. Please help me see what I am missing or doing wrong.
My form tag:
<form method="post" action="thankyou.asp" name="FrontPage_Form1" onSubmit="return MyForm_OnSubmit(this)">
This is at the end of the validation code:
If validation = True Then
return true
Else
return false
End If
The other required fields on the form are always required and use FrontPage's built in validation. I have VBScript validation on the form, but it is not working. Please help me see what I am missing or doing wrong.
My form tag:
<form method="post" action="thankyou.asp" name="FrontPage_Form1" onSubmit="return MyForm_OnSubmit(this)">
This is at the end of the validation code:
If validation = True Then
return true
Else
return false
End If