最新的Web开发教程
 

ASP ASPError对象


该ASPError对象显示有关脚本错误的信息。


该ASPError对象

该ASPError对象是在ASP 3.0中实现,并提供在IIS5及更高版本。

ASPError对象,用于显示发生在ASP页的脚本的任何错误的详细信息。

Note:已创建ASPError对象时Server.GetLastError被调用,所以该错误信息只能通过使用Server.GetLastError方法来访问。

下面的ASPError对象的属性被描述(all properties are read-only)

属性

属性 描述
ASPCode 返回由IIS生成的错误代码
ASPDescription 返回错误的详细说明(if the error is ASP-related)
Category 返回错误的来源(was the error generated by ASP? By a scripting language? By an object?)
Column 返回产生错误的文件中列位置
Description 返回错误的简短说明
File 返回产生错误的ASP文件的名称
Line 返回在其中检测到错误的行号
Number 返回标准COM错误的错误代码
Source 返回发生错误的行的实际的源代码