Quick References
      ADO
      ASP
      CSS2
      HTML
      JavaScript
      Jet SQL
      VBScript
      WML
      WMLScript
      WSH
      XHTML
      XML DOM
      XSLT

Features
      Knowledge Base
      Tutorials

Partners
     ZVON.ORG
     XML
     Planet Source Code
     VisualBuilder
     Web Design
     Your HTML Source
     XML/XSLT Forums
     ASPAlliance
     Scripts
     
     Programmers Heaven
     Tek-Tips Forums
     Developer Fusion
     Code Project











Property:  Err.Description

Implemented in version 1.0
 
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 runtime 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'."


 


Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information