|
-
Jun 1st, 2006, 04:10 AM
#1
Thread Starter
Fanatic Member
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
-
Jun 1st, 2006, 08:40 AM
#2
Re: Page not diaplaying
Try putting a space between the <%, %> and the rest of the code.
<% Response.Write "Hello" %>
-
Jun 2nd, 2006, 02:23 AM
#3
Thread Starter
Fanatic Member
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
-
Jun 2nd, 2006, 09:26 AM
#4
PowerPoster
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"
%>
-
Jun 6th, 2006, 03:52 AM
#5
Thread Starter
Fanatic Member
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'
-
Jun 6th, 2006, 08:35 AM
#6
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/
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|