<!--
function setDisableButtonTimer(){
disableButtonTimer = setInterval("disableButton()", 5000);
}
function disableButton(){
document.form1.btnSubmit.disabled = true;
clearInterval(disableButtonTimer);
}
-->
</script>
</head>
<body onload="setDisableButtonTimer();">
Campkev, are the above the essential parts i need to have in the html page? Also how do i run the script for the ASP.NET web control button since i have to call 2 functions?
Reputation Points: 10
Solved Threads: 0
Junior Poster in Training
Offline 50 posts
since Jun 2005