<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<script type="text/vbscript">
//declare a variable called strText
Dim strText
//put some text in the variable
strText="This is a test of VBScript"
//output the string
document.write(strText)
</script>
</body>
</html>
|