Users Online

· Guests Online: 43

· Members Online: 0

· Total Members: 188
· Newest Member: meenachowdary055

Forum Threads

Newest Threads
No Threads created
Hottest Threads
No Threads created

Latest Articles

What is VBScript? Introduction & Examples

What is VBScript?

VBScript is a client-side scripting language like JavaScript. VB Script stands for Visual Basic Script and it is a light version of Microsoft Visual Basic. The syntax of VBScript is very similar to that of Visual Basic. VBScript was developed by Microsoft with the intention of developing dynamic web pages.

In other words, 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.

In this tutorial, you will learn-

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

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 File menu and click” 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.

Summary

  • 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.

 

Comments

No Comments have been Posted.

Post Comment

Please Login to Post a Comment.

Ratings

Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Render time: 0.76 seconds
10,820,517 unique visits