以文本方式查看主题

-  咿思舞论坛  (http://bbs.145829.com/index.asp)
--  『网站资源』  (http://bbs.145829.com/list.asp?boardid=8)
----  asp错误处理on error resume next  (http://bbs.145829.com/dispbbs.asp?boardid=8&id=655)

--  作者:admin
--  发布时间:2010/10/2 1:23:47
--  asp错误处理on error resume next

asp错误处理on error resume next:

<%@ LANGUAGE="VBscript" %>
<%Response.Buffer = True
On Error Resume Next               \'这句是一定要的
%>
<%
s="sa"
response.write(Int(s))    \'把字符转换成整数特意弄错来看error对象
If Err.Number <> 0 Then  
Response.Clear
response.write"发生错误:"%>
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
错误 Number: <%= Err.Number %><br/>
错误信息: <%= Err.Description %><br/>
出错文件: <%= Err.Source %><br/>
出错行: <%= Err.Line %><br/>
<%= Err %>
</BODY>
</HTML>
<%End If%>