<html>
<head>
<script language="JavaScript">
 function CheckForm()

      document.all.hdnTst.value="update";
  document.all.form1.submit();

}
</script>
</head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<%
response.Write("_date" & "<br />")
response.Write(request.Form("hdnTst") & "<br />")
response.Write(request.Form("a100") & "<br />")
response.Write("_date" & "<br />")
%>
  
  <form  name="form1" method="post" >
<input type="hidden" name="hdnTst" />
<input  type="button"  id="cmdConfirm"  value="aaa" onClick="CheckForm()">
<input type="button" id="a100"  name="a100" value="dddd"> 
  </form>
</body>
</html>