<html>
<head>
</head>
<body>
<script type="
text/vbscript">
document.write("Hello from VBScript!")
</script>
</body>
</html>
The problem is, these codes generate 2 error.
Expected end of line
sytanx error
So I removed the "text" in the
<script type="text/vbscript"> statement to
<script type="vbscript">and my errors were gone. But then my
document.write statement then doesn't work. What is wrong with my orginal code.
Rohn