VBScript How To ...
Examples
Write text
How to write text on a page
Write text with formatting
How to format the text on your page with HTML tags
How to Put VBScript Code in an HTML Document
<html>
<head>
</head>
<body>
<script type="text/vbscript">
document.write("Hello from VBScript!")
</script>
</body>
</html>
|
And it produces this output:
To insert a script in an HTML document, use the <script> tag. Use the
type attribute to define the scripting language.
<script type="text/vbscript">
|
Then comes the VBScript: The command for writing some text on
a page is document.write:
document.write("Hello from VBScript!")
|
The script ends:
How to Handle Older Browsers
Older browsers that do not support scripts will display the script as page
content. To prevent them from doing this, you can use the HTML comment tag:
<script type="text/vbscript">
<!--
some statements
-->
</script>
|
Whether you're new to XML or already an advanced user, the user-friendly views
and powerful entry helpers, wizards, and debuggers in XMLSpy are designed to
meet your XML and Web services development needs from start to finish.
- XML editor
- Graphical XML Schema / DTD editors
- XSLT 1.0/2.0 editor, debugger, profiler
- XQuery editor, debugger, profiler
- Support for Office Open XML (OOXML)
- Graphical WSDL editor & SOAP debugger
- Java, C#, C++ code generation
- And much more!
Download a fully functional free 30-day trial today!
|