ASP ASPError 對象
asp asperror 對象
asperror 對象用于顯示在 asp 文件的腳本中發(fā)生的錯誤信息。
asperror 對象
asperror 對象在 asp 3.0 中生效,且在 iis5 及更高版本中可用。
asperror 對象用于顯示在 asp 文件的腳本中發(fā)生的任何錯誤的詳細信息。
注釋:當(dāng) server.getlasterror 被調(diào)用時,asperror 對象就會被創(chuàng)建,因此只能通過使用 server.getlasterror 方法來訪問錯誤信息。
asperror 對象的屬性描述如下(所有屬性都是可讀的):
屬性
屬性 | 描述 |
---|---|
aspcode | 返回由 iis 生成的錯誤代碼。 |
aspdescription | 返回錯誤的詳細信息(如果錯誤和 asp 相關(guān))。 |
category | 返回錯誤來源。(錯誤是由 asp、腳本語言還是對象引起的?) |
column | 返回在出錯文件中的列位置。 |
description | 返回關(guān)于錯誤的簡短描述。 |
file | 返回出錯 asp 文件的名稱。 |
line | 返回錯誤所在的行數(shù)。 |
number | 返回關(guān)于錯誤的標準 com 錯誤代碼。 |
source | 返回錯誤所在行的實際的源代碼。 |