What's new
HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

What is VBScript? Introduction & Examples

Sophia

New member

What is VBScript?​

VBScript (Visual Basic Script) is developed by Microsoft with the intention of developing dynamic web pages. It is client-side scripting language like JavaScript. VBScript is a light version of Microsoft Visual Basic. The syntax of VBScript is very similar to that of Visual Basic. If you want your webpage to be more lively and interactive, then you can incorporate VBScript in your code.
VBScript is just a scripting language. So, it cannot run its code on its own. It needs a bigger programming language to host it.
Right now, there are 3 environments where VB Scripts can run.

  1. IIS (Internet Information Server) – Microsoft’s web server
  2. WSH (Windows Script Host)– The native hosting environment of the Windows OS
  3. IE (Internet Explorer)– The simplest hosting environment we can use to run VBScript

How to Create a Simple VBScript?​

You only need 2 simple tools to create and run VBScript code throughout this tutorial:
  1. Internet Explorer – any version, but it is good to use IE6 or above.
  2. Text Editor – You can use normal text editors like Notepad++ or Microsoft Expression Web or even Notepad to write VBScript code.
Let’s start by developing a simple VB Script program.

In this tutorial series, we will embed our VBScript code within a very basic HTML code.


This way, we can see VBScript in action by running the particular HTML file on the Internet Explorer web browser.

VBScript Example:​

Open your text editor (Here, Notepad is used. You can use whichever text editor you want) and add the following lines of code.

<html>
<head>
<title>My First VBScript Code!!!</title>
</head>
<body>

<script type="text/vbscript">
document.write("Yes!!! I have started learning VBScript.")
</script>

</body>
</html>
Now your text editor will look like this (the appearance and layout could be different based on the text editor you use):

Introduction to VBScript


Simple VBscript Program

In this program, the following sections constitute the HTML template.

<html>
<head>
<title>My First VBScript Code!!!</title>
</head>
<body>

<script type="text/vbscript">
document.write("Yes!!! I have started learning VBScript.")
</script>

</body>
</html>
Only the section that starts with <script> comes as part of VB Scripting code.

Whatever string sequence you put in the document.write() will be displayed by IE as page text.

This code will simply output the statement “Yes!!! I have started learning VB Scripting.” on the browser page.

Go to the File menu and click the” Save” option. Now you will get a window like this:

Introduction to VBScript

  1. Filename: enter the name as trial.html
  2. Save as type: All Files.
  3. Click the save button
Click the Save button and you will see the file trial.html in the folder where you have saved your file.

To execute the VB Scripting code we have just created, we need to open the trial.html file in Internet Explorer.

If you have set IE as your default browser, you just need to double-click the file trial.html.

If you have set any other web browser as your default browser, right-click the file and go to Open With –> Internet Explorer like this:

Introduction to VBScript

Note: You may be shown a message to make IE your default browser

Now, the IE web browser will be opened with a security warning like this:

Introduction to VBScript

Click “Allow blocked content” and you will be asked whether you want to set IE as your default browser. You can click Yes or No as you want. Now, you will get the following message on IE.

Introduction to VBScript

Yes, you implemented your first VBScript code successfully.

Troubleshooting​

If the code is not working –
  • Press F12 to open developer tools
  • In left toolbar scroll down until you see “Emulation” settings page
  • Change Document Mode from a default (“Edge”) to 10
  • Try using the following code
<html>
<head>
<meta http-equiv="x-ua-compatible" content="IE=10">
<title>My First VBScript Code!!!</title>
</head>
<body>

<script type="text/vbscript">
document.write("Hello World!")
</script>

</body>
</html>

Disadvantage of VBScript​

The main disadvantage of VBScript is that most browsers except Internet Explorer will not process VBScript code. In other words, if your site has visitors who use a web browser other than Internet Explorer like Chrome, Firefox or Opera, then VBScript will not be useful.

Moreover, VBScript will not run on computers that run on operating systems other than Microsoft Windows including Linux, Mac etc.

Like any other scripting language, VBScript has gone through many changes over the years.

Now, VB Script is used as the default scripting language of ASP.

KEY LEARNING:​

  • VB Script is a scripting language developed by Microsoft.
  • It is a light version of Microsoft Visual Basic and the VBScript syntax is very similar to that of Visual Basic.
  • VBScript program needs to be hosted on any of these 3 environments:
    1. IIS (Internet Information Server) – Microsoft’s own web server software
    2. WSH (Windows Scripting Host) – The native hosting environment of the Windows OS
    3. IE (Internet Explorer) – The simplest hosting environment we can use to run VBScript
  • VB Script can only run on Windows machines and Internet Explorer browser.
  • The simplest tools that you can use to create and run VBScript are IE and any text editor.
 
Back
Top