The Microsoft Visual Basic Scripting Edition
language(VBScript), is a simplified version of the Visual Basic and Visual Basic for
Applications family of programming languages. It is also well thought-out to be
closely related to the BASIC programming language.
VBScript is a scripting language,
which can enhance HTML Web pages by making them active, as compared to a simple
static presentation of data.Specifically, VBScript was created by Microsoft to use either as
a server-side scripting language with the Microsoft Internet Information Server (versions 3.0 and later).Or as a client-side scripting language for the Microsoft Internet Explorer (versions
3.0 and later) or as A most important advantage for
using the server-side approach is that the VBScript is processed by the server
before it is transmitted to the client. Therefore,the client only receives an
HTML page and we do not have to concern ourselves as to whether the browser can
interpret the VBScript. In contrast, by using the client-side approach, you
reduce the work load of the server by transfer the work to client end. Unfortunately, older version and non-Microsoft browsers may not be able to
correctly interpret and display the transmitted file. In addition to this, the
source code is out in the open to the browser user and also a client-side
program can produce a more-responsive application. since user input can be
processed on the client machine, and not sent back to the server for processing.
VBScript is the default language of Active
Server Pages (ASP).
VBScript may very well be the most important programming language for many Web-application.
VBScript Version 5.0 was released in 1999. Certainly, the most important new
feature of Version 5.0 is the ability to create your own class objects. Other new features included like the Timer function,
With statement, and regular expression searching using the RegExp and Match objects.
|