I have a vbscript that I want to run in the <head>
of an asp. I am having trouble getting the script to run so I'm thinking I need some help making sure the asp knows that it's vvbscript or something. The last script is the one I am having trouble running.
here is what I have:
<%@ Language=VBScript %>
<%
***vbscript***
%>
<HTML>
<HEAD>
<link rel="stylesheet" href="MD_intstyle.css" type="text/css">
<SCRIPT Language="JavaScript">
***javascript***
</script>
<script language="vbscript">
***vbscript I am trying to run***
</script>
</HEAD>