(This could be in either the Classic ASP forum, or in the General Questions forum...I'm confused.)
I have to make a school project in ASP. I hosted a page in ASP on my site (which I host expressly for the ASP project using Abyss, IIS was not at all easy to understand -.-)
First time I did it, it didnt run at all. So I made a test file.
Here is the code -
<% LANGUAGE="VBScript" %>
<html>
<head>
<%
<!--
response.write("ASP"&"<BR>")
-->
%>
<script language="VBScript">
<!--
document.write("VBScript")
-->
</script>
<script language="JavaScript">
<!--
document.write("JavaScript")
-->
</script>
</head>
<body>
</body>
</html>
In Opera, the output was
<% LANGUAGE="VBScript" %> <% %> JavaScript
In IE, the output was
VBScript JavaScript
I double checked with w3schools.com, syntax was 100% correct (I hope - what could possibly go wrong in such a small code? -.-)
Please help.
Edit - I asked a friend to check it out on my site (
http://59.165.24.132/asp2.asp) and it still doesnt work. That is, same output as above. And when they load an ASP file in FireFox (I dont have FF), it asks them to dload it. How possibly can I get it working?