Please visit our sponsors !
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>
|
Jump to: Top of Page
or HOME or
Printer friendly page
Search W3Schools:
What Others Say About Us
Does the world know about us? Check out these places:
Dogpile
Alta Vista
MSN
Google
Excite
Lycos
Yahoo
Ask Jeeves
We Help You For Free. You Can Help Us!
W3Schools is for training only. We do not warrant its correctness or its fitness for use.
The risk of using it remains entirely with the user. While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2002 by Refsnes Data. All Rights Reserved
|