<CFERROR TYPE="err_type"
TEMPLATE="path"
MAILTO="email_address">
TYPE
The type of error that this custom error page is designed to handle:
- Specify Request to handle errors that occur during the processing of a page. Request is the default.
- Specify Validation to handle data input validation errors that occur when submitting a form. A validation error handler is only useful if placed inside the
Application.cfm file.
TEMPLATE
The relative path to the file containing the error page. Note that this page can only include the error variables described below and cannot include CFML tags.
MAILTO
The email address of the administrator who should be notified of the error. This value is available to your custom error page using the MailTo property of the error object, such as #Error.MailTo#.
|