How do you make a field required in an asp form on your website?

Leah

New member
Everything I've tried for this, has not worked in making the field required in my asp form.
I've tried:
<asp:RequiredFieldValidator ControlToValidate="txtName" ID="firstname" runat="server" ErrorMessage="Please enter your name." />

and i've also tried:
<input type="hidden" name="required" value="lastname">

Nothing works! :(
 
Back
Top