Good morning all, I was wondering if VBScript could do the same thing as what the below JavaScript is doing, that is to focus on a form control after the user has made some mistakes in his/her inputs...
<script type="text/javascript">
function Verify_Inputs() {
if(document.Testing_Form.Testing_TextBox.value == "") {
alert("Please enter a value.")
document.Testing_Form.Testing_TextBox.focus();
return false;
} // Ends the If-Clause.
document.Testing_Form.submit();
return true;
} // Ends the "Verify-Inputs" function.
</script>