VBScript

VBScript

Infobox programming language

caption =
file_ext = .vbs
paradigm =
year = 1996
designer =
developer = Microsoft
latest_release_version =
latest_release_date =
latest_test_version =
latest_test_date =
typing =
implementations = Windows Script Host, Active Server Pages
dialects =
influenced_by =
influenced =
operating_system =
license =
website =
wikibooks =

VBScript (short for Visual Basic Scripting Edition) is an Active Scripting language developed by Microsoft. The language's syntax reflects its history as a limited variation of Microsoft's Visual Basic programming language.

VBScript is installed by default in every desktop release of Microsoft Windows since Windows 98, [ cite web | url = http://msdn2.microsoft.com/en-us/library/x66z77t4(VS.85).aspx | title = WSH Version Information | publisher = Microsoft | date = 2008 | accessdate = 2008-04-02 ] and may or may not be included with Windows CE depending on the configuration and purpose of the device it is running on. It initially gained support from Windows administrators seeking an automation tool more powerful than the batch language first developed in the late 1970s.

A VBScript script must be executed within a host environment, of which there are several provided on a standard install of Microsoft Windows (Windows Script Host, Internet Explorer). Additionally, The VBScript hosting environment is embeddable in other programs, through technologies such as the Microsoft Script control (msscript.ocx).

History

VBScript began as part of the Microsoft Windows Script Technologies, which were targeted at web developers initially and were launched in 1996. During a period of just over two years, the VBScript and JScript languages advanced from version 1.0 to 2.0 (the latter was later renamed 5.0) and over that time system administrators noticed it and began using it. In version 5.0, the functionality of VBScript was increased with new features such as regular expressions, classes, the With statement, [cite web|url=http://msdn2.microsoft.com/en-us/library/zw39ybk8.aspx|publisher=Microsoft|title=Visual Basic Scripting Edition:With Statement (VBScript)|accessdate=2008-04-02|date=2008] Eval/Execute/ExecuteGlobal functions to evaluate and execute script commands built during the execution of another script, a function-pointer system via [http://msdn2.microsoft.com/en-us/library/ekabbe10.aspx GetRef()] , and Distributed COM (DCOM) support.

In 5.5, "Submatches" [cite web|url=http://msdn2.microsoft.com/en-us/library/y27d2s18.aspx|title= Visual Basic Scripting Edition: SubMatches Collection|publisher=Microsoft|date=2008|accessdate=2008-04-02] were added to the regular expression class in VBScript to finally allow VBScript script authors to capture the text within the expression's groups. That capability before was only possible through the JScript member of the Microsoft ActiveX Scripting family.

As of 2007, no new functionality will be added to the VBScript language, which has been superseded by Windows Powershell. However, it will continue to be shipped with future releases of Microsoft Windows, as will other components of the ActiveX Scripting Family (such as JScript). Additionally, support will continue due to the amount of code written in it and because it is still considered a useful tool for some tasks.

The language engine is currently being maintained by Microsoft's Sustaining Engineering Team, which is responsible for bug fixes and security enhancements.

Uses

When employed in Microsoft Internet Explorer, VBScript is similar in function to JavaScript, as a language to write functions that are embedded in or included from HTML pages and interact with the Document Object Model (DOM) of the page, to perform tasks not possible in HTML alone. Other web browsers such as Firefox, and Opera do not have built-in support for VBScript. This means that where client-side script is required on a web site, developers almost always use JavaScript for cross-browser compatibility.

Besides client-side web development, VBScript is used for server-side processing of web pages, most notably with Microsoft Active Server Pages (ASP). The ASP engine and type library, asp.dll, invokes vbscript.dll to run VBScript scripts. VBScript that is embedded in an ASP page is contained within <% and %> context switches. The following example of an ASP page with VBScript displays the current time in 24-hour format (Note that an '=' sign occurring after a context switch (<%) is short-hand for a call to Write() method of the Response object).

<% Option Explicit %> VBScript Example <% 'Grab current time from Now() function. Dim timeValue timeValue = Now %> The time, in 24-hour format, is <%=Hour(timeValue)%>:<%=Minute(timeValue)%>:<%=Second(timeValue)%>. VBScript can also be used to create applications that run directly on a person's computer running Microsoft Windows. The simplest example of this is a script that makes use of the Windows Script Host (WSH) environment. Such a script is usually in a stand-alone file with the file extension .vbs. The script can be invoked in two ways. Wscript.exe is used to display output and receive input in through a GUI, such as dialog and input boxes. Cscript.exe is used in a command line environment.

VBScript .vbs files can be included in two other types of scripting files: .wsf files, which are styled after XML; and .hta files, which are styled after HTML. .wsf files can be executed using wscript.exe or cscript.exe, just like .vbs files, and .wsf files can include multiple .vbs files. As a result .wsf files provide a means for code reuse: one can write a library of classes or functions in one or more .vbs files, and include those files in one or more .wsf files to use and reuse that functionality in a modular way.

Another employment of VBScript is the HTML Application, or HTA (file extension .hta). In an HTA, HTML is used for the user interface, and a scripting language such as VBScript is used for the program logic. HTAs run inside of mshta.exe, which is a 'Trusted Application Environment' provided by Internet Explorer. The 'Trusted Application Environment', implies that HTAs do not suffer the restrictions applied to applications running in the web or intranet zone, such as accessing local files or network paths. Although HTAs run in this 'trusted' environment, querying Active Directory can be subject to Internet Explorer Zone logic and associated error messages.

VBScript (and JScript) can be used in a .wsc file to create a Windows Script Component - an ActiveX-enabled script class that can be invoked by other COM-enabled applications. [cite web|title=Introducing Windows Script Components |url=http://msdn2.microsoft.com/en-us/library/07zhfkh8(VS.85).aspx|date=2008|publisher=Microsoft|accessdate=2008-04-02]

Lastly, VBScript has been adopted as the internal scripting language for some embedded applications, such as industrial operator interfaces and human machine interfaces.Fact|date=September 2008

Functionality

As-is, VBScript provides functions and sub-routines, basic date/time, string manipulation, math, user interaction, error handling, and regular expressions. Additional functionality can be added through the use of ActiveX technologies. File system management, file modification, and streaming text operations can be achieved with the Scripting Runtime Library scrrun.dll. Binary file and memory I/O is provided by the "ADODB.Stream" class, which can also be used as a string builder (since a high amount of VBScript string concatenation is costly due to constant memory re-allocation), and can be used to convert an array of bytes to a string and vice versa. Database access is made possible through ActiveX Data Objects (ADO), and the IIS Metabase can be manipulated using the GetObject() function with sufficient permissions (useful for creating and destroying sites and virtual directories). Additionally, XML files and schemas can be manipulated with the Microsoft XML Library Application Programming Interfaces (msxml6.dll, msxml3.dll), which also can be used to retrieve content from the World Wide Web via the XMLHTTP and ServerXMLHTTP objects (class strings "MSXML2.XMLHTTP.6.0" and "MSXML2.ServerXMLHTTP.6.0").lol

ee also

*JScript
*JavaScript
*PHP
*JScript.NET
*Windows Script File
*HTML Components

References

External links

* [http://msdn2.microsoft.com/en-us/library/t0aew7h6.aspx VBScript] in the Microsoft Developer Network
* [http://www.microsoft.com/downloads/details.aspx?FamilyId=01592C48-207D-4BE1-8A76-1C4099D7BBB9&displaylang=en Windows Script 5.6 Documentation]


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать реферат

Look at other dictionaries:

  • Vbscript — (diminutif de Microsoft Visual Basic Scripting Edition) est un sous ensemble de Visual Basic utilisé en tant que langage de script d usage général. Le VBScript est souvent comparé au JavaScript, alors que le JavaScript est essentiellement utilisé …   Wikipédia en Français

  • VBScript — (diminutif de Microsoft Visual Basic Scripting Edition) est un sous ensemble de Visual Basic utilisé en tant que langage de script d usage général. Il est souvent comparé au JavaScript. Sommaire 1 Environnements d utilisation 2 Langage interprété …   Wikipédia en Français

  • VBScript — (abreviatura de Visual Basic Script Edition) es un lenguaje interpretado por el Windows Scripting Host de Microsoft. Su sintaxis refleja su origen como variación del lenguaje de programación Visual Basic. Ha logrado un apoyo significativo por… …   Wikipedia Español

  • VBScript — разработанный корпорацией Miacrosoft язык создания сценариев; подмножество языка Visual Basic. VBScript используется для написания сценариев клиента. См. также: Скрипт языки Финансовый словарь Финам …   Финансовый словарь

  • VBScript — es el Lenguaje Script de Visual Basic. Hay lenguajes que tienen scripts, los cuáles son una especie de programación derivada de determinado lenguaje con el fin de economizar espacio, tiempo o recursos al realizar cierta actividad. Tenemos el… …   Enciclopedia Universal

  • VBScript —   [Abk. für Visual Basic Scripting Edition, dt. »Scriptausgabe von Visual Basic«], von Visual Basic abgeleitete Scriptsprache, die wie das Konkurrenzprodukt JavaScript HTML Dokumente mit interaktiven Elementen versieht und dabei zu ActiveX… …   Universal-Lexikon

  • VBScript — (Visual Basic Scripting Edition) programming language developed by Microsoft that is based on Visual Basic and supported by the Internet Explorer browser (enables features similar to Java interactive buttons, scrolls, etc.) …   English contemporary dictionary

  • VBScript — Visual Basic Script (kurz: VBScript oder VBS) ist eine von Microsoft entwickelte Skriptsprache. Sie ist eng verwandt mit Visual Basic (VB) und Visual Basic for Applications (VBA) und wird üblicherweise interpretiert. Inhaltsverzeichnis 1… …   Deutsch Wikipedia

  • VBScript — Visual Basic Scripting Edition (обычно просто VBScript) скриптовый язык программирования, интерпретируемый компонентом Windows Script Host. Он широко используется при создании скриптов в операционных системах семейства Microsoft Windows. VBScript …   Википедия

  • VBScript — noun A scripting language that is a subset of Microsoft Visual Basic …   Wiktionary

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”