;;;disables javascript...
mmmm there are lots wierdos out there - client side validation is the most efficient, if are concerened about this minority you can do it on the server side. IMO - how many people fit into this category and do we need thier business.
;;;Also how about other checking for others such as date/time, number?
To check for an integer:
if(isNaN(parseInt(document.fName.fieldName.value)) )
{
alert("not a valid number
document.fName.fieldName.focus();
document.fName.fieldName.select();
return(false);
}
Dates : dont let them enter them manualy - give them a date picker then just check for ""
;;dependability of javascript checking
If its turned on it will work - all my form validation is done with
JS
Youre welcome
Wind is your friend
Matt