Simple asp page works locally but not from server
What am I missing here? Here is what I have. A very simple asp page (default.asp) that was created using Visual Interdev.
VB Code:
<%@ Language=VBScript %>
<!-- #INCLUDE FILE="style.asp" -->
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE>Test</TITLE>
</HEAD>
<BODY>
<%
Response.Write "<h1>"
Response.Write "ASP TEST"
Response.Write "</h1>"
%>
</BODY>
</HTML>
As you can see, basically I'm loading an include file (style.asp). This asp page loads a style sheet using this code.
VB Code:
<LINK REL="stylesheet" TYPE="text/css" HREF="defaultstyle.css">
Right now all I have in the style sheet is an image for the background and some formatting for the <h1> tag.
After that I'm simply trying to print a couple words.
This works fine locally, but if I try to move it to the server and test it, it just returns a blank page. It appears that my include file is not being read and anything in the script tags are being ignored.