Active Server Pages (.asp files) normally produce a page containing errors encountered when executing .asp queries. This page can point you to the problem that caused the error by using the VBScript OnError statement and the standard VBScript Err object.
The following error messages are generated by Active Server Pages:
Message | Explanation |
---|---|
The catalog directory cannot be found in the location specified by the Catalog property. | The catalog location specified by the Catalog property did not contain a valid content index catalog. |
The CiFlags property had improper syntax. Expecting 'Shallow' or 'Deep'. | The Depth of the AddScopeToQuery method has a value other than SHALLOW or DEEP. |
Expecting comma. | Occurs when a reserved token or end-of-string occurs before the closing brace of a vector property. Example: @VectorString = {A1, B@} . |
Duplicate column, possibly by a column alias, found in the Columns property. | The same column was named more than once in the CiColumns line. It may have been mentioned with different friendly names that refer to the same column. |
Invalid column name found in the Columns property. | A value specified in the Columns property is not a standard property and was not defined by the DefineColumn method. |
An invalid locale was specified for the LocaleID property or the browser's Accept-Language header. | The locale ID specified by the LocaleID property was not recognized as a valid locale ID. |
No output columns were set. | The Columns property is empty. At least one output column must be specified for the query. |
The Query property was not set. | The Query property is missing or empty. Every query must have a restriction. A restriction such as #vpath *.* will match all pages. |
There is not a query being executed. | A query status property was referenced when there was no active query. |