prompt ข้อความที่แสดงใน Dialog Box
title ข้อความที่เกิดบน Title Box
xpos ตำแหน่งในแนวแกน X
ypos ตำแหน่งในแนวแกน Y
helpfile ชื่อของ Help
context ลำดับที่ของ Help ในไฟล์ Help
Sample1 การใช้ InputBox รับข้อความจากผู้ใช้
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<script language="VBScript">
Dim strName
strName=InputBox("Hi What is your name :")
MsgBox("Hello " & strName)
</script>
</body>
</html>