VBScript HTML Check Input Text Field ตัวอย่างนี้จะเป็นการใช้ VBScript ควบคุม การตรวจสอบค่าว่างของ Text Field
Sample1 การใช้ VBScript ในการตรวจสอบค่าว่างของ Text Field
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<script language="VBScript">
Function btnSubmit_OnClick()
If Document.form1.txt1.value = "" Then
Msgbox("Please input Input 1")
Document.form1.txt1.focus()
Exit Function
End IF
If Document.form1.txt2.value = "" Then
Msgbox("Please input Input 2")
Document.form1.txt2.focus()
Exit Function
End IF
Document.form1.submit()
End Function
</script>
<form action="page.cgi" method="post" name="form1">
Input 1 <input name="txt1" type="text"><br>
Input 2 <input name="txt2" type="text"><br>
<input name="btnSubmit" type="button" value="Submit">
</form>
</body>
</html>