如何更快更好地调试ASP程序代码?

来源:asp之家 时间:2009-11-23 20:13:00 

asp自定义错误显示方法:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; 
charset=gb2312">
<title>asp教程之程序调试高手</title>
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<%@ LANGUAGE="VBScript" %>
<% 
Response.Buffer = True
' 打开页面缓冲
On Error Resume Next
' 打开错误处理
%>
<% 
 If Err.Number <> 0 Then
 ' 错误处理
 Response.Clear
   ' 清除缓冲区
  %>
</head>
<body>
<p><%= Err.Number %><br>
<%= Err.Line %><br>
</p>
</font><div align="center"><center>
<table border="0" cellspacing="0" width="600" height="166">
  <tr>
    <td height="61"><p align="center">精彩春风之ASP调试错误信息显示</td>
  </tr>
   <tr>
    <td height="106"><div align="center"><center><table border="1" cellspacing="0" width="400">
      <tr>
        <td colspan="2" width="400"><p align="center"><font 
color="red">警告:本页面发生错误 </font></td>
      </tr>
      <tr>
        <td width="96">错误号</td>
        <td width="376"> </td>
      </tr>
      <tr>
        <td width="96">错误描述<%= 
Err.Description %></td>
        <td width="376"> </td>
      </tr>
      <tr>
        <td width="96">错误源<%= Err.Source 
%></td>
        <td width="376"> </td>
      </tr>
      <tr>
        <td width="96">错误发生行
</td>
        <td width="376"> </td>
      </tr>
    </table>
    </center></div></td>
  </tr>
</table>
</center></div>
</body>
</html>
<%
 End If
%>

标签:调试,程序,asp
0
投稿

猜你喜欢

  • 详解BeautifulSoup获取特定标签下内容的方法

    2022-12-17 12:25:57
  • php+Memcached实现简单留言板功能示例

    2023-11-15 09:30:02
  • TensorFlow通过文件名/文件夹名获取标签,并加入队列的实现

    2023-02-14 17:08:47
  • Python 基础教程之包和类的用法

    2021-10-31 16:58:19
  • eslint常见的一些报错及解决方法

    2024-05-11 09:09:32
  • Asp中Server.ScriptTimeOut脚本超时属性需要注意的一点

    2008-10-18 14:53:00
  • Python顺序结构语句详解

    2023-05-26 13:19:44
  • vue和iview实现Scroll 数据无限滚动功能

    2024-04-28 09:22:23
  • TensorFlow实现自定义Op方式

    2021-11-01 15:56:38
  • python发送多人邮件没有展示收件人问题的解决方法

    2023-01-03 05:16:10
  • ajax+asp无限级分类树型结构

    2011-04-02 11:05:00
  • Pycharm无法显示动态图片的解决方法

    2023-01-29 23:13:42
  • fckeditor编辑器在php中的配置方法

    2023-10-14 14:26:52
  • 一文搞懂Golang 时间和日期相关函数

    2024-02-06 00:29:01
  • Python利用PyAutoGUI轻松搞定图片上传

    2022-11-19 23:15:18
  • PyQt5 实现字体大小自适应分辨率的方法

    2022-08-25 03:07:44
  • python list使用示例 list中找连续的数字

    2022-10-16 19:49:46
  • javascript正则表达式模糊匹配IP地址功能示例

    2024-06-12 00:28:10
  • Mysql字符串截取函数SUBSTRING的用法说明

    2024-01-24 14:53:51
  • Python 经典面试题 21 道【不可错过】

    2023-10-29 04:56:20
  • asp之家 网络编程 m.aspxhome.com