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:
  1. <%@ Language=VBScript %>
  2. <!-- #INCLUDE FILE="style.asp" -->
  3.  
  4. <HTML>
  5. <HEAD>
  6. <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
  7. <TITLE>Test</TITLE>
  8. </HEAD>
  9. <BODY>
  10. <%
  11. Response.Write "<h1>"
  12. Response.Write "ASP TEST"
  13. Response.Write "</h1>"
  14. %>
  15.  
  16. </BODY>
  17. </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:
  1. <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.