I have a problem with loading my VBscript in html. I tried to test a simple sample, but it doesn't work: My html:
<!DOCTYPE html>
<html>
<body>
<head>
<script src="login_VBS.vbs"> </script>
</head>
</body>
</html>
login_VBS.vbs:
msgbox "this is a message"
I can not make it easier, but when I check the view source from IE, the vbs doesn't exist in my source. Any ideas?