busy.asp

来自「1985498mapxtremeforaspdemo.rar」· ASP 代码 · 共 34 行

ASP
34
字号
<%@ LANGUAGE = VBScript %>
<!--#INCLUDE FILE="..\lib\miConst.asp"-->
<!--#INCLUDE FILE="..\lib\miErrorSystem.asp"-->

<HTML> 
<HEAD><TITLE>Problem on Web Server</TITLE></HEAD> 
<BODY BGCOLOR=WHITE>
<CENTER>
<H2>Problem on Web Server</H2>
</CENTER>
<P> 
The web server was not able to perform your request. <P> 

<%	
' If an error code has been set, try to display a meaningful error message.
If HaveError() Then 
  If GetErrorNum() = 258 Then 
    Response.Write "Probable cause of problem:<BR>Your request timed out because the server was busy.<P>"
  ElseIf GetErrorNum() = 429 Then 
    Response.Write "Probable cause of problem:<BR>The web host's map service does not appear to be running.<P>"
  Else 
    Response.Write "Error # " & GetErrorNum() & " in function " & GetErrorFuncName() & ": " & GetErrorDesc() & ".<P>" 
  End If 
  ClearError
End If 
%>

To try again, click the link below.<P>
<CENTER>
<A HREF="mappage.asp">Run the Hello Broker Application</A>
</CENTER>
</BODY> 
</HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?