VBScript syntax is a set of predefined rules that ascertain how the language will be coded by the developer and interpreted by the browser or server.
The VBScript syntax may also be presented in some ways comparable to JavaScript. You are familiar with Keywords like variables, statements, functions, data typing, operators, objects and so on if you know JavaScript or any other language for that matter. This, too, is part of the VBScript.
First VBScript
Let us write a VBScript to print out "Hello, this is my first VBscript program".
<html>
<body>
<script language = "vbscript" type = "text/vbscript">
document.write("Hello, this is my first VBscript program")
</script>
</body>
</html>
In the given example, document.write function is called, which writes a string into the HTML document. Write function is used to write text, HTML or both.