asp执行出错,如何跳过错误到错误页面

网络整理 - 09-08

  使用

<%
on error resume next
'执行过程 ....
if err.number <> 0 then
resonse.redirect "错误页面.htm"
end if
%>