any solutions as to why this form does not submit:
Code:
<html><head>
</head><body>
<form name="registrationFrm" action="validate.asp" method="post">
<some hidden values..here......>
<p align="center">
<p align="center">
Your information has been validated, please click
the button below to begin the survey.<p align="center">
<input name="submit" type="submit">
</form>
</body>
</html>
<script>
window.onload = setFocus;
function setFocus(){
document.registrationFrm.submit();
}
</script>