Validation on form in HTML using asp?

  • Thread starter Thread starter Gina81
  • Start date Start date
G

Gina81

Guest
Hello,
I am using the current script and it is working as far as sending me my emails but I want to make sure that the name and email address are both filled in completly. Could someone please help me .

Thanks,

<form action="_gdForm/webformmailer.asp" method="POST">

<div align="center" class="style5">
<input type="hidden" name="subject" value="Submission" />
<input type="hidden" name="redirect" value="main.html" />
<input name="_requiredFields" type="hidden" value="FirstName,email" />
<br />
<span class="style1"> Name:
<input type="text" name="FirstName" />
<br />
<br />
Email: </span>
<input type="text" name="email" />
<br /> <BR />
<input type="submit" name="submit" value="submit"/>


<input type="hidden" name="form_order" value="alpha"/>
<input type="hidden" name="form_delivery" value="hourly"/>
<input type="hidden" name="form_format" value="html"/>
</div>
</form>
 
Back
Top