ÄúµÄλÖãº
Ñ°ÃÎÍøÊ×Ò³
£¾
±à³ÌÀÖÔ°
£¾
VBScript
£¾
VBScript
objects
constants
operators
statements
functions
properties
methods
All Properties
Err Object
Property: Err.Description
object.
Description
[ = string]
This property returns or sets a string containing a brief textual description of an error. The optional
string
argument lets you define the description of the error in your code. Otherwise, providing the generated error number relates to a VBScript run-time error, the
Description
value is automatically filled with a default description.
Code:
<%
On Error Resume Next
Err.Raise 48
Err.Description = "My error"
Response.Write "Error type is '" & Err.Description & "'."
<%
Output:
"Error type is 'My error'."