asked on
function disableButton() {
var buttonDiv = document.getElementById('regBtnDiv');
buttonDiv.style.visibility = "hidden";
buttonDiv.style.height = "0px";
var msgDiv = document.getElementById('validatingMessage');
msgDiv.style.visibility = "visible";
msgDiv.style.height = "20px";
setTimeout('showButton()', 2000);
}
function showButton() {
var buttonDiv = document.getElementById('regBtnDiv');
buttonDiv.style.visibility = "visible";
buttonDiv.style.height = "auto";
var msgDiv = document.getElementById('validatingMessage');
msgDiv.style.visibility = "hidden";
msgDiv.style.height = "0px";
}
ASKER
The successor to Active Server Pages, ASP.NET websites utilize the .NET framework to produce dynamic, data and content-driven web applications and services. ASP.NET code can be written using any .NET supported language. As of 2009, ASP.NET can also apply the Model-View-Controller (MVC) pattern to web applications
TRUSTED BY