<%@LANGUAGE="VBScript"%> <% Option Explicit Dim ShowErrorDetails, ReirectPage ShowErrorDetails = False 'Set to true for debugging errors ReirectPage = "" 'If this is filled in, this is the page to redirect to in case of a 404 error Dim ASPErr Set ASPErr = Server.GetLastError() If ASPErr.Description <> "" Then If ShowErrorDetails Then Response.Write(Server.HTMLEncode(ASPErr.Category) & " error '" & Server.HTMLEncode(ASPErr.ASPCode) & Server.HTMLEncode(LCase(Hex(ASPErr.Number))) & "'

") Response.Write(Server.HTMLEncode(ASPErr.Description) & "

") Response.Write(Server.HTMLEncode(ASPErr.File) & ", line " & Server.HTMLEncode(ASPErr.Line)) Response.End() Else %> The page cannot be displayed

The page cannot be displayed

There is a problem with the page you are trying to reach and it cannot be displayed.

Please try the following:

  • Open the home page, and then look for links to the information you want.
  • Click the Refresh button, or try again later.

HTTP 500 - Internal server error
Internet Information Services


Technical Information (for support personnel)

<% End If Else If ReirectPage <> "" Then Response.Status = "301 Moved Permanently" Response.AddHeader "Location", ReirectPage Response.End() Else Response.Status = "404 Not Found" %> The page cannot be found

The page cannot be found

The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.

Please try the following:

  • Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.
  • If you reached this page by clicking a link, contact the Web site administrator to alert them that the link is incorrectly formatted.
  • Click the Back button to try another link.

HTTP Error 404 - File or directory not found.
Internet Information Services (IIS)


Technical Information (for support personnel)

  • Go to Microsoft Product Support Services and perform a title search for the words HTTP and 404.
  • Open IIS Help, which is accessible in IIS Manager (inetmgr), and search for topics titled Web Site Setup, Common Administrative Tasks, and About Custom Error Messages.
<% End If End If %>