Results 1 to 6 of 6

Thread: Page not diaplaying

  1. #1

    Thread Starter
    Fanatic Member davebat's Avatar
    Join Date
    Dec 2002
    Posts
    727

    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

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Page not diaplaying

    Try putting a space between the <%, %> and the rest of the code.

    <% Response.Write "Hello" %>

  3. #3

    Thread Starter
    Fanatic Member davebat's Avatar
    Join Date
    Dec 2002
    Posts
    727

    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

  4. #4
    PowerPoster
    Join Date
    May 2006
    Posts
    2,988

    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"
    %>

  5. #5

    Thread Starter
    Fanatic Member davebat's Avatar
    Join Date
    Dec 2002
    Posts
    727

    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'

  6. #6
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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
  •  



Click Here to Expand Forum to Full Width