<Script Language="JavaScript">
<!--
function preSubmit()
{
   if(document.all("txtTest").length==0){
      alert("txtTest必须添写!!非法字段");
      return false;
   }
//...其他检验部分   return true;
}
//-->
</Script>
<form method="Post" action="xxx.asp" onsubmit="JavaScript:preSubmit();">
    <input type="text" name="txtTest"></form>