myself1
03-19-2008, 08:12 AM
Hi all :o .
I am trying to get users to fill out all the required fields on my APS form, as follows:
<!--Input Details Here -->
<form id="bro" name="addfrm" method="post" action="matconfirm.asp">
<INPUT TYPE="hidden" NAME="BrDate" VALUE="<%=DATE()%>">
<span class="stress">Fill in ALL fields</span>
<fieldset>
<p><label for="BrfName">Name:</label><input name="BrfName" type="text" class="txt" id="BrfName" maxlength="15"></p>
<p><label for="BrSurname">Surname:</label><input name="BrSurname" type="text" class="txt" id="BrSurname" maxlength="15" /></p>
<p><label for="BrAge">Age:</label><select name="BrAge">
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
</select>
</p>
<p><label for="BrEmail">Email Address:</label><input name="BrEmail" type="text" class="txt" id="BrEmail" maxlength="35" /></p>
<p><label for="BrPhone">Phone:</label><input name="BrPhone" type="text" class="txt" id="BrPhone" maxlength="20" /></p>
</fieldset>
<fieldset>
<p>
<label for="BrTown">Town/City:</label>
<input name="BrTown" type="text" class="txt" id="BrTown" maxlength="20" />
</p>
<p>
<label for="BrOrigin">Ethnicity:</label>
<input name="BrOrigin" type="text" class="txt" id="BrOrigin" maxlength="20" />
</p>
<p>
<label for="BrNational">Nationality:</label>
<input name="BrNational" type="text" class="txt" id="BrNational" maxlength="15"/>
</p></fieldset>
<input type="submit" name="btnSubmit" id="btnSubmit" value="Register Me Please" class="btn" />
</p>
</form>
What do I need to add so the users have to fill in such data.
Hope to hear. TIA. :)
I am trying to get users to fill out all the required fields on my APS form, as follows:
<!--Input Details Here -->
<form id="bro" name="addfrm" method="post" action="matconfirm.asp">
<INPUT TYPE="hidden" NAME="BrDate" VALUE="<%=DATE()%>">
<span class="stress">Fill in ALL fields</span>
<fieldset>
<p><label for="BrfName">Name:</label><input name="BrfName" type="text" class="txt" id="BrfName" maxlength="15"></p>
<p><label for="BrSurname">Surname:</label><input name="BrSurname" type="text" class="txt" id="BrSurname" maxlength="15" /></p>
<p><label for="BrAge">Age:</label><select name="BrAge">
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
</select>
</p>
<p><label for="BrEmail">Email Address:</label><input name="BrEmail" type="text" class="txt" id="BrEmail" maxlength="35" /></p>
<p><label for="BrPhone">Phone:</label><input name="BrPhone" type="text" class="txt" id="BrPhone" maxlength="20" /></p>
</fieldset>
<fieldset>
<p>
<label for="BrTown">Town/City:</label>
<input name="BrTown" type="text" class="txt" id="BrTown" maxlength="20" />
</p>
<p>
<label for="BrOrigin">Ethnicity:</label>
<input name="BrOrigin" type="text" class="txt" id="BrOrigin" maxlength="20" />
</p>
<p>
<label for="BrNational">Nationality:</label>
<input name="BrNational" type="text" class="txt" id="BrNational" maxlength="15"/>
</p></fieldset>
<input type="submit" name="btnSubmit" id="btnSubmit" value="Register Me Please" class="btn" />
</p>
</form>
What do I need to add so the users have to fill in such data.
Hope to hear. TIA. :)