Posts

Showing posts with the label #VB

Learn with kbdk :Adding VBScript Code to an HTML Page

Image
Adding VBScript Code to an HTML Page You can use the SCRIPT element to add VBScript code to an HTML page. The <SCRIPT> Tag VBScript code is written within paired <SCRIPT> tags. For example, a procedure to test a delivery date might appear as follows: <SCRIPT LANGUAGE="VBScript"> <!-- document.write(“Hi”) --> </SCRIPT> Beginning and ending <SCRIPT> tags surround the code. The LANGUAGE attribute indicates the scripting language. You must specify the language because browsers can use other scripting languages. You can use SCRIPT blocks anywhere in an HTML page. You can put them in both the BODY and HEAD sections. However, you'll probably want to put all general-purpose scripting code in the HEAD section in order to keep all the code together. Keeping your code in the HEAD section ensures that all code is read and decoded before it's needed by any calls from within the BODY section.

Learn with kbdk: Adding VBScript Code to an HTML Page

Adding VBScript Code to an HTML Page You can use the SCRIPT element to add VBScript code to an HTML page. The <SCRIPT> Tag VBScript code is written within paired <SCRIPT> tags. For example, a procedure to test a delivery date might appear as follows: <SCRIPT LANGUAGE="VBScript"> <!-- document.write(“Hai”) --> </SCRIPT> Beginning and ending <SCRIPT> tags surround the code. The LANGUAGE attribute indicates the scripting language. You must specify the language because browsers can use other scripting languages. You can use SCRIPT blocks anywhere in an HTML page. You can put them in both the BODY and HEAD sections. However, you'll probably want to put all general-purpose scripting code in the HEAD section to keep all the code together. Keeping your code in the HEAD section ensures that all code is read and decoded before it's needed by any calls from within the BODY section.

Learn with kbdk : Introduction to VB Script

Image
VB SCRIPT What Is Vb Script ? Microsoft Visual Basic Scripting Edition, the newest member of the Visual Basic family of programming languages brings active scripting to a wide variety of environments, including Web client scripting in Microsoft Internet Explorer and Web server scripting in Microsoft Internet Information Server. Easy to Use and Learn If you already know Visual Basic or Visual Basic for Applications, Vb Script will be very familiar. Even if you don't know Visual Basic, once you learn Vb Script, you're on your way to programming with the whole family of Visual Basic languages. Although you can learn about Vb Script in just these few Web pages, they don't teach you how to program. To get started programming, take a look at Step by Step books available from Microsoft Press.