-
Page not diaplaying
On most of the machines on my work network my asp pages work fine, however on some they do not display with the message the page cannot be displayed.
There is nothing wrong with the code, I did a simple test consisting of
Code:
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<%response.write "hello world"%>
</body>
</html>
the same page as html displays correctly
-
Re: Page not diaplaying
Try putting a space between the <%, %> and the rest of the code.
<% Response.Write "Hello" %>
-
Re: Page not diaplaying
Cheers Mendhak, I created a page with only static html but with a .asp extension and the same thing occured so I think its a server issue. The problem cleared itself after an hour and is ok now. The problem is it may come back and I've no idea why
-
Re: Page not diaplaying
Strange .. anyway use this instead ..
<%="hello world"%>
and put this at the top of all ASP pages ..
<%@ Language="VBScript" %>
<%
Option Explicit
Response.Buffer = "true"
%>
-
Re: Page not diaplaying
problem occuring again with any asp page even if there is no actual vbscript code.
Interestingly in firefox i get the message 'Not enough storage is available to complete this operation'
-
Re: Page not diaplaying
Very odd... what about your global.asa? Does that have any database code, because it could be related to:
http://support.microsoft.com/kb/q182423/