Can't execute ANY VBScript
Hi all,
Below is a HTML file. It contains VBScript to display a messagebox. Can
anyone see any obvious reason why it doesn't display the messagebox? I've
converted it to Javascript (ie. alert("Hello");) and it works fine. I've
also tried looking though the security settings to see if there was any
VBScript specific settings there and couldn't find any.
Any thoughts/solutions appreciated,
Rob
<html>
<head>
<title>Untitled</title>
</head>
<body>
Start
<Script Language="VBScript">
msgbox "Hello"
</SCRIPT>
End
</body>
</html>