Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

366 lines
27 KiB

  1. /*===================================================================
  2. Microsoft Denali
  3. Microsoft Confidential.
  4. Copyright 1996 Microsoft Corporation. All Rights Reserved.
  5. Component: Resources
  6. File: Denali.rc
  7. Owner: LeiJin (was AndrewS)
  8. This file contains all resources used by Denali
  9. ===================================================================*/
  10. #include "denevent.rc"
  11. #include "resource.h"
  12. #include "denver.h" // denali version info
  13. /*===================================================================
  14. Type Librarys
  15. ===================================================================*/
  16. 1 TYPELIB DISCARDABLE "asp.tlb"
  17. /*===================================================================
  18. String Table
  19. ===================================================================*/
  20. /*
  21. The format of error strings is:
  22. DefaultMask~ErrorCode~Short Description~LongDescription
  23. NOTE: ~ is not allowed in Short Description and Long Description.
  24. NOTE: DefaultMask, ErrorCode, and ShortDescription should not be empty.
  25. NOTE: For explanation of DefaultMask, please refer to error.h header file.
  26. String with no format should be named as
  27. IDS_String for regular strings.
  28. IDH_String for header.
  29. CONSIDER: rename unformatted string.
  30. ****IMPORTANT*****
  31. NOTE: The NEXT UNUSED ERROR CODE is "ASP 0248". Please use this number
  32. for the next addin of formatted error string, and update the NEXT
  33. UNUSED ERROR CODE accordingly.
  34. */
  35. STRINGTABLE DISCARDABLE
  36. BEGIN
  37. //
  38. // General errors
  39. //
  40. IDE_OOM "007~ASP 0100~Out of memory~Unable to allocate required memory."
  41. IDE_UNEXPECTED "007~ASP 0101~Unexpected error~The function returned |."
  42. IDE_EXPECTING_STR "007~ASP 0102~Expecting string input~The function expects a string as input."
  43. IDE_EXPECTING_INT "007~ASP 0103~Expecting numeric input~The function expects a number as input."
  44. IDE_NOT_ALLOWED "007~ASP 0104~Operation not Allowed~"
  45. IDE_BAD_ARRAY_INDEX "007~ASP 0105~Index out of range~An array index is out of range."
  46. IDE_TYPE_MISMATCH "007~ASP 0106~Type Mismatch~An unhandled data type was encountered."
  47. IDE_STACK_OVERFLOW "007~ASP 0107~Stack Overflow~The data being processed is over the allowed limit."
  48. // The following string is ONLY ever logged to the NT event log. It never goes to the browser
  49. IDS_COUNINITIALIZE "An active server control or component performed an illegal OLE CoUninitialize call. Components used by Active Server Pages must not do this. Attempting to recover."
  50. // String expansions of boolean True and False
  51. IDS_TRUE "True"
  52. IDS_FALSE "False"
  53. // The Default strings get load into registry.
  54. IDS_DEFAULTMSG_DENIED "Error: Access is Denied."
  55. IDS_DEFAULTMSG_ERROR "An error occurred on the server when processing the URL. Please contact the system administrator."
  56. IDS_DEFAULTMSG_BUSY "The server is under heavy load, please try again later."
  57. IDS_IIS_NOTINSTALLED "Internet Information Server(IIS) is not installed, Active Server Pages requires IIS installed first."
  58. IDS_CACHE_DIR_MISSING "The Disk Cache Directory does not exist or cannot be accessed"
  59. // WARNING: The following string must NOT be localized
  60. IDS_SCRIPTLANGUAGE "VBScript"
  61. // WARNING: The preceding string must NOT be localized
  62. // Error browser template, used in logging to the browser.
  63. // NOTE, use \042 for '\"' in resource file, STRINGTABLE
  64. // NOTE, can not have empty strings, so, " " for BEGIN, END, etc.
  65. //EXTRACT following comments from error.cpp
  66. //The order of ErrTemplate_Index should be exactly the same order as the IDS_BROWSER_TEMPLATE
  67. //in the resource.h, and as the same order we output the template to the browser.
  68. //Implementation will loop through the index and picking the string from the resource file.
  69. //Implementation will also loop through the index and write the string to browser.
  70. //Changing order of IDS_BROWSER_TEMPLATE will affect implementation in error.cpp.
  71. IDS_BROWSER_TEMPLATE_BEGIN " "
  72. IDS_BROWSER_TEMPLATE_ENGINE_BEGIN "<font face=\042Arial\042 size=2>\n<p>"
  73. IDS_BROWSER_TEMPLATE_ENGINE_END "</font> "
  74. IDS_BROWSER_TEMPLATE_ERROR_BEGIN "<font face=\042Arial\042 size=2>error '"
  75. IDS_BROWSER_TEMPLATE_ERROR_END "'</font>"
  76. IDS_BROWSER_TEMPLATE_SHORT_BEGIN "\n<p>\n<font face=\042Arial\042 size=2>"
  77. IDS_BROWSER_TEMPLATE_SHORT_END "</font>"
  78. IDS_BROWSER_TEMPLATE_FILE_BEGIN "\n<p>\n<font face=\042Arial\042 size=2>"
  79. IDS_BROWSER_TEMPLATE_FILE_END "</font>"
  80. IDS_BROWSER_TEMPLATE_LINE_BEGIN "<font face=\042Arial\042 size=2>, line "
  81. IDS_BROWSER_TEMPLATE_LINE_END "</font>"
  82. IDS_BROWSER_TEMPLATE_CODE_BEGIN "\r\n<pre>"
  83. IDS_BROWSER_TEMPLATE_CODE_END "</pre>"
  84. IDS_BROWSER_TEMPLATE_LONG_BEGIN "\n<p>\n<font face=\042Arial\042 size=2>"
  85. IDS_BROWSER_TEMPLATE_LONG_END "\n</font>"
  86. IDS_BROWSER_TEMPLATE_END " "
  87. IDS_DEBUG_APP "Microsoft Active Server Pages"
  88. IDS_LOG_IISLOGFAILED "IIS log failed to write entry, "
  89. IDS_COMPILER "Active Server Pages Compiler"
  90. IDS_ENGINE "Active Server Pages"
  91. IDS_LOGTOEVENTLOG_FILE "File "
  92. IDS_LOGTOEVENTLOG_LINE "Line "
  93. IDS_MDOORANGE_FORMAT "Metabase key %d is out of range. Using %d as default."
  94. //IDS_ERROR_PREFIX is used in IIS log only, as the PREFIX to error log.
  95. IDS_IISLOG_PREFIX "|ASP"
  96. IDS_RE_REGSVR_ASP "Error while reading default settings. please do regsvr32 asp.dll."
  97. IDS_SCRIPT_ERROR "ASP Script Error"
  98. IDS_DEBUGGER_TEMPLATE_BEGIN "error '"
  99. IDS_DEBUGGER_TEMPLATE_END "'"
  100. IDS_DEBUGGING_DISABLED " - Application Debugging is Disabled"
  101. IDS_DEFAULTPERSISTDIR "%windir%\\system32\\inetsrv\\ASP Compiled Templates"
  102. //HTTP Header, do not change!
  103. IDH_204_NO_CONTENT "204 No Content"
  104. IDH_403_FORBIDDEN "403 Forbidden"
  105. IDH_404_OBJECT_NOT_FOUND "404 Object Not Found"
  106. IDH_500_SERVER_ERROR "500 Server Error"
  107. IDH_401_3_ACCESS_DENIED "401 Access Denied"
  108. //Encrypted ASP printable file header
  109. IDS_EASP_PRINTABLE_HEADER " *** Encrypted ASP File *** \n\n"
  110. //
  111. // Script Engine/Manager errors
  112. //
  113. // Last Resort...CONSIDER, change to IDS, usein ComposeErrorString.
  114. IDE_SCRIPT_CANT_LOAD_OBJ "006~ASP 0108~Create object failed~An error occurred while creating object '%s'."
  115. IDE_SCRIPT_METHOD_NOT_FOUND "006~ASP 0109~Member not found~"
  116. IDE_SCRIPT_UNKNOWN_NAME "006~ASP 0110~Unknown name~"
  117. IDE_SCRIPT_UNKNOWN_INTERFACE "006~ASP 0111~Unknown interface~"
  118. IDE_SCRIPT_MISSING_PARAMETER "006~ASP 0112~Missing parameter~"
  119. IDE_SCRIPT_TIMEOUT "006~ASP 0113~Script timed out~The maximum amount of time for a script to execute was exceeded. You can change this limit by specifying a new value for the property Server.ScriptTimeout or by changing the value in the IIS administration tools."
  120. IDE_SCRIPT_BAD_SCOPE_MODEL "006~ASP 0114~Object not free threaded~The application object accepts only free threaded objects; object '%s' is not free threaded."
  121. IDE_SCRIPT_GPF "007~ASP 0115~Unexpected error~A trappable error (%X) occurred in an external object. The script cannot continue running."
  122. IDE_SCRIPT_UNKNOWN "An external object raised an error. No Error Description Available."
  123. //
  124. // CTemplate errors
  125. //
  126. IDE_TEMPLATE_ERRMSG_TITLE "ASP Preprocessor Error"
  127. IDE_TEMPLATE_ERRMSG_PREFIX "Error in script file '|' on line |: "
  128. IDE_TEMPLATE_NO_CLOSE_PSCRIPT "006~ASP 0116~Missing close of script delimiter~The Script block lacks the close of script tag (%>)."
  129. IDE_TEMPLATE_NO_CLOSE_TSCRIPT "006~ASP 0117~Missing close of script tag~The Script block lacks the close of script tag (</SCRIPT>) or close of tag symbol (>)."
  130. IDE_TEMPLATE_NO_CLOSE_OBJECT "006~ASP 0118~Missing close of object tag~The Object block lacks the close of object tag (</OBJECT>) or close of tag symbol (>)."
  131. IDE_TEMPLATE_NO_CLASSID_PROGID "006~ASP 0119~Missing Classid or Progid attribute~The object instance '|' requires a valid Classid or Progid in the object tag."
  132. IDE_TEMPLATE_RUNAT_NOT_SERVER "006~ASP 0120~Invalid Runat attribute~The Runat attribute of the Script tag or Object tag can only have the value 'Server'."
  133. IDE_TEMPLATE_VALUE_REQUIRED "006~ASP 0238~Missing attribute value~No value was specified for the '|' attribute."
  134. IDE_TEMPLATE_BAD_PAGE_OBJECT_SCOPE "006~ASP 0121~Invalid Scope in object tag~The object instance '|' cannot have Application or Session scope. To create the object instance with Session or Application scope, place the Object tag in the Global.asa file."
  135. IDE_TEMPLATE_BAD_GLOBAL_OBJECT_SCOPE "006~ASP 0122~Invalid Scope in object tag~The object instance '|' must have Application or Session scope. This applies to all objects created in a Global.asa file."
  136. IDE_TEMPLATE_NO_OBJECT_NAME "006~ASP 0123~Missing Id attribute~The required Id attribute of the Object tag is missing."
  137. IDE_TEMPLATE_NO_ENGINE_NAME "006~ASP 0124~Missing Language attribute~The required Language attribute of the Script tag is missing."
  138. IDE_TEMPLATE_NO_ATTRIBUTE_DELIMITER "006~ASP 0125~Missing close of attribute~The value of the '|' attribute has no closing delimiter."
  139. IDE_TEMPLATE_BAD_INCLUDE "006~ASP 0126~Include file not found~The include file '|' was not found."
  140. IDE_TEMPLATE_NO_CLOSE_HTML_COMMENT "006~ASP 0127~Missing close of HTML comment~The HTML comment or server-side include lacks the close tag (-->)."
  141. IDE_TEMPLATE_NO_INCLUDE_NAME "006~ASP 0128~Missing File or Virtual attribute~The Include file name must be specified using either the File or Virtual attribute."
  142. IDE_TEMPLATE_BAD_PROGLANG "006~ASP 0129~Unknown scripting language~The scripting language '|' is not found on the server."
  143. IDE_TEMPLATE_BAD_FILE_TAG "006~ASP 0130~Invalid File attribute~File attribute '|' cannot start with forward slash or back slash."
  144. IDE_TEMPLATE_DISALLOWED_PARENT_PATH "006~ASP 0131~Disallowed Parent Path~The Include file '|' cannot contain '..' to indicate the parent directory."
  145. IDE_TEMPLATE_ERRMSG_GENERIC "006~ASP 0132~Compilation Error~The Active Server Page '|' could not be processed."
  146. IDE_TEMPLATE_BAD_CLASSID "006~ASP 0133~Invalid ClassID attribute~The object tag has an invalid ClassID of '|'."
  147. IDE_TEMPLATE_BAD_PROGID "006~ASP 0134~Invalid ProgID attribute~The object has an invalid ProgID of '|'."
  148. IDE_TEMPLATE_CYCLIC_INCLUDE "006~ASP 0135~Cyclic Include~The file '|' is included by itself (perhaps indirectly). Please check include files for other Include statements."
  149. IDE_TEMPLATE_INVALID_OBJECT_NAME "006~ASP 0136~Invalid object instance name~The object instance '|' is attempting to use a reserved name. This name is used by Active Server Pages intrinsic objects."
  150. IDE_TEMPLATE_BAD_GLOBAL_PSCRIPT "006~ASP 0137~Invalid Global Script~Script blocks must be one of the allowed Global.asa procedures. Script directives within <% ... %> are not allowed within the Global.asa file. The allowed procedure names are Application_OnStart, Application_OnEnd, Session_OnStart, or Session_OnEnd."
  151. IDE_TEMPLATE_NESTED_TSCRIPT "006~ASP 0138~Nested Script Block~A script block cannot be placed inside another script block."
  152. IDE_TEMPLATE_NESTED_OBJECT "006~ASP 0139~Nested Object~An object tag cannot be placed inside another object tag."
  153. IDE_TEMPLATE_PAGE_COMMAND_NOT_FIRST "006~ASP 0140~Page Command Out Of Order~The @ command must be the first command within the Active Server Page."
  154. IDE_TEMPLATE_PAGE_COMMAND_REPEATED "006~ASP 0141~Page Command Repeated~The @ command can only be used once within the Active Server Page."
  155. IDE_TEMPLATE_BAD_PROGLANG_IN_REGISTRY "006~ASP 0201~Invalid Default Script Language~The default script language specified for this application is invalid."
  156. IDE_TEMPLATE_NO_CODEPAGE "006~ASP 0202~Missing Code Page~The code page attribute is missing."
  157. IDE_TEMPLATE_BAD_CODEPAGE "006~ASP 0203~Invalid Code Page~The specified code page attribute is invalid."
  158. IDE_TEMPLATE_BAD_AT_COMMAND "006~ASP 0221~Invalid @ Command directive~The specified '|' option is unknown or invalid."
  159. IDE_TEMPLATE_BAD_SSI_COMMAND "006~ASP 0234~Invalid include directive~Server side include directives may not be present in script blocks. Please use the SRC= attribute of the <SCRIPT> tag."
  160. IDE_TEMPLATE_METADATA_IN_GLOBAL_ASA "006~ASP 0243~Invalid METADATA tag in Global.asa~Only METADATA TYPE=""TypeLib"" may be used in Global.asa."
  161. //
  162. // Executor errors
  163. //
  164. IDE_204_NO_CONTENT "518~0~204 No Content~"
  165. IDE_404_OBJECT_NOT_FOUND "518~0~404 Object Not Found~"
  166. IDE_401_3_ACCESS_DENIED "518~0~401 Error: Access is Denied.~"
  167. //
  168. // Sessmgr errors
  169. //
  170. //currently not used.
  171. IDE_ERROR_STRING_403 "Object Not Found"
  172. IDE_ERROR_SCRIPT_NF "Error, Script file '%s' was not found on the server."
  173. IDE_ERROR_SCRIPT_EMPTY "Error, Script file '%s' is empty."
  174. //
  175. // Initialize browser request errors
  176. //
  177. // should
  178. IDE_OPEN_THREAD_TOKEN "006~ASP 0142~Thread token error~A thread token failed to open."
  179. IDE_INVALID_APPLICATION "006~ASP 0143~Invalid Application Name~A valid application name was not found."
  180. IDE_INIT_PAGE_LEVEL_OBJ "006~ASP 0144~Initialization Error~The page level objects list failed during initialization."
  181. //IDE_ADD_APPLICATION currently is not used.
  182. IDE_ADD_APPLICATION "006~ASP 0145~New Application Failed~The new Application could not be added."
  183. IDE_ADD_SESSION "006~ASP 0146~New Session Failed~The new Session could not be added"
  184. IDE_500_SERVER_ERROR "006~ASP 0147~500 Server Error~"
  185. IDE_SERVER_TOO_BUSY "006~ASP 0148~Server Too Busy~"
  186. IDE_TOO_MANY_USERS "006~ASP 0246~Too many concurrent users. Please try again later.~"
  187. IDE_GLOBAL_ASA_CHANGED "006~ASP 0149~Application Restarting~The request cannot be processed while the application is being restarted."
  188. IDE_GLOBAL_ASA_FORBIDDEN "006~ASP 0220~Requests for GLOBAL.ASA Not Allowed~Requests with the URL pointing to GLOBAL.ASA are not allowed."
  189. IDE_BAD_CODEPAGE_IN_MB "006~ASP 0246~Invalid Default Code Page~The default code page specified for this application is invalid."
  190. //
  191. // Application manager errors
  192. //
  193. //Take care by HandleSysError
  194. IDE_OPEN_APPLN_DIR "006~ASP 0150~Application Directory Error~The Application directory could not be opened."
  195. IDE_CHANGE_NOTIFICATION "006~ASP 0151~Change Notification Error~The change notification event could not be created."
  196. //
  197. // Thread manager errors
  198. //
  199. IDE_IMPERSONATE_USER "006~ASP 0152~Security Error~An error occurred while processing a user's security credentials."
  200. //CONSIDER: Change to IDS. Only to NTLog.
  201. IDE_CANT_CREATE_THREAD "006~ASP 0153~Thread Error~A new thread request failed."
  202. //
  203. // Intrinsic errors
  204. //
  205. IDE_INTRINSIC_OUT_OF_SCOPE "006~ASP 0211~Object out of scope~A built-in ASP object has been referenced, which is no longer valid."
  206. IDE_RESPONSE "Response object"
  207. IDE_RESPONSE_HEADERS_CANT_REACH_CLIENT "006~ASP 0154~Write HTTP Header Error~The HTTP headers could not be written to the client browser."
  208. IDE_RESPONSE_BODY_CANT_REACH_CLIENT "006~ASP 0155~Write Page Content Error~The page content could not be written to the client browser."
  209. IDE_RESPONSE_HEADERS_WRITTEN "006~ASP 0156~Header Error~The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content."
  210. IDE_RESPONSE_CANT_STOP_BUFFER "006~ASP 0157~Buffering On~Buffering cannot be turned off once it is already turned on."
  211. IDE_RESPONSE_NO_URL "006~ASP 0158~Missing URL~A URL is required."
  212. IDE_RESPONSE_BUFFER_NOT_ON "006~ASP 0159~Buffering Off~Buffering must be on."
  213. IDE_RESPONSE_LOG_FAILURE "006~ASP 0160~Logging Failure~Failure to write entry to log."
  214. IDE_RESPONSE_REDIRECT1 "<head><title>Object moved</title></head>\n<body><h1>Object Moved</h1>This object may be found <a HREF=\042"
  215. IDE_RESPONSE_REDIRECT2 "\042>here</a>.</body>\n"
  216. IDE_RESPONSE_UNABLE_TO_CONVERT "006~ASP 0161~Data Type Error~The conversion of a Variant to a String variable failed."
  217. IDE_RESPONSE_MODIFY_SESS_COOKIE "006~ASP 0162~Cannot Modify Cookie~The cookie 'ASPSessionID' cannot be modified. It is a reserved cookie name."
  218. IDE_RESPONSE_COMMAS_NOT_ALLOWED "006~ASP 0163~Invalid Comma Use~Commas cannot be used within a log entry. Please select another delimiter."
  219. IDE_RESPONSE_CLEAR_AFTER_FLUSH_IN_DEBUG "006~ASP 0212~Cannot Clear Buffer~Response.Clear is not allowed after a Response.Flush while Client Debugging is Enabled."
  220. IDE_SESSION "Session object"
  221. IDE_SESSION_ID "SessionID"
  222. IDE_SESSION_INVALID_TIMEOUT "006~ASP 0164~Invalid TimeOut Value~An invalid TimeOut value was specified."
  223. IDE_SESSION_INVALID_CODEPAGE "006~ASP 0204~Invalid CodePage Value~An invalid CodePage value was specified."
  224. IDE_SESSION_MAP_FAILED "006~ASP 0165~SessionID Error~A SessionID string cannot be created."
  225. IDE_SESSION_UNINITIALIZED_OBJ "006~ASP 0166~Uninitialized Object~An attempt was made to access an uninitialized object."
  226. IDE_SESSION_INIT_FAIL "006~ASP 0167~Session Initialization Error~An error occurred while initializing the Session object."
  227. IDE_SESSION_CANT_STORE_INTRINSIC "006~ASP 0168~Disallowed object use~An intrinsic object cannot be stored within the Session object."
  228. IDE_SESSION_CANT_STORE_NO_MODEL "006~ASP 0169~Missing object information~An object with missing information cannot be stored in the Session object. The threading model information for an object is required."
  229. IDE_SESSION_COULD_NOT_DELETE "006~ASP 0170~Delete Session Error~The Session did not delete properly."
  230. IDE_SERVER "Server object"
  231. IDE_SERVER_MAPPATH "Server.MapPath()"
  232. IDE_SERVER_MAPPATH_INVALID_STR "006~ASP 0171~Missing Path~The Path parameter must be specified for the MapPath method."
  233. IDE_SERVER_MAPPATH_PHY_STR "006~ASP 0172~Invalid Path~The Path parameter for the MapPath method must be a virtual path. A physical path was used."
  234. IDE_SERVER_MAPPATH_INVALID_CHR "006~ASP 0173~Invalid Path Character~An invalid character was specified in the Path parameter for the MapPath method."
  235. IDE_SERVER_MAPPATH_INVALID_CHR2 "006~ASP 0174~Invalid Path Character(s)~An invalid '/' or '\\' was found in the Path parameter for the MapPath method. "
  236. IDE_SERVER_MAPPATH_INVALID_CHR3 "006~ASP 0175~Disallowed Path Characters~The '..' characters are not allowed in the Path parameter for the MapPath method. "
  237. IDE_SERVER_MAPPATH_FAILED "006~ASP 0176~Path Not Found~The Path parameter for the MapPath method did not correspond to a known path."
  238. IDE_SERVER_EXCEDED_MAX_PATH "006~ASP 0214~Invalid Path parameter~The Path parameter excedes the maximum length allowed."
  239. //Bug Fix 91847 %s is used for concatenating a FormatMessage() based description.
  240. IDE_SERVER_CREATEOBJ_FAILED "006~ASP 0177~Server.CreateObject Failed~%s"
  241. IDE_SERVER_CREATEOBJ_DENIED "006~ASP 0178~Server.CreateObject Access Error~The call to Server.CreateObject failed while checking permissions. Access is denied to this object."
  242. IDE_APPLICATION "Application object"
  243. IDE_APPLICATION_FAILED_INIT "006~ASP 0179~Application Initialization Error~An error occurred while initializing the Application object."
  244. IDE_APPLICATION_CANT_STORE_INTRINSIC "006~ASP 0180~Disallowed object use~An intrinsic object cannot be stored within the Application object."
  245. IDE_APPLICATION_CANT_STORE_APT_MODEL "006~ASP 0181~Invalid threading model~An object using the apartment threading model cannot be stored within the Application object."
  246. IDE_APPLICATION_CANT_STORE_NO_MODEL "006~ASP 0182~Missing object information~An object with missing information cannot be stored in the Application object. The threading model information for the object is required."
  247. IDE_COOKIE "Cookies object"
  248. IDE_COOKIE_EMPTY_DICT "006~ASP 0183~Empty Cookie Key~A cookie with an empty key cannot be stored."
  249. IDE_COOKIE_NO_NAME "006~ASP 0184~Missing Cookie Name~A name must be specified for a cookie."
  250. IDE_COOKIE_BAD_EXPIRATION "006~ASP 0200~Out of Range 'Expires' attribute~The date and time given for 'Expires' precedes Jan 1, 1980 or excedes Jan 19, 2038, 3:14:07 GMT."
  251. IDE_REQUEST "Request object"
  252. IDE_UTIL_NO_VALUE "006~ASP 0185~Missing Default Property~A default property was not found for the object."
  253. IDE_COVER "Server object"
  254. IDE_CERTIFICATE "Certificate object"
  255. IDE_CERTIFICATE_BAD_CERT "006~ASP 0186~Error parsing certificate"
  256. // New error messages should go down here so that it is easy to keep the
  257. // error number sequential
  258. IDE_APPLICATION_LOCKED_CANT_STORE_OBJ "006~ASP 0187~Object addition conflict~Could not add object to application. Application was locked down by another request for adding an object."
  259. IDE_SESSION_CANT_STORE_TAG_OBJECT "006~ASP 0188~Disallowed object use~Cannot add objects created using object tags to the session intrinsic."
  260. IDE_APPLICATION_CANT_STORE_TAG_OBJECT "006~ASP 0189~Disallowed object use~Cannot add objects created using object tags to the application intrinsic."
  261. IDE_COVER_DISP_RELEASE_GPF "007~ASP 0190~Unexpected error~A trappable error occurred while releasing an external object."
  262. IDE_COVER_ON_START_PAGE_GPF "007~ASP 0191~Unexpected error~A trappable error occurred in the OnStartPage method of an external object."
  263. IDE_COVER_ON_END_PAGE_GPF "007~ASP 0192~Unexpected error~A trappable error occurred in the OnEndPage method of an external object."
  264. IDE_COVER_ON_START_PAGE_FAILED "007~ASP 0193~OnStartPage Failed~An error occurred in the OnStartPage method of an external object."
  265. IDE_COVER_ON_END_PAGE_FAILED "007~ASP 0194~OnEndPage Failed~An error occurred in the OnEndPage method of an external object."
  266. IDE_SERVER_INVALID_CALL "006~ASP 0195~Invalid Server Method Call~This method of the Server object cannot be called during Session_OnEnd and Application_OnEnd."
  267. IDE_SERVER_CREATEOBJ_NOTINPROC "006~ASP 0196~Cannot launch out of process component~Only InProc server components should be used. If you want to use LocalServer components, you must set the AspAllowOutOfProcComponents metabase setting. Please consult the help file for important considerations."
  268. IDE_APPLICATION_CANT_STORE_OBJECT "006~ASP 0197~Disallowed object use~Cannot add object with apartment model behavior to the application intrinsic object."
  269. IDE_SERVER_SHUTTING_DOWN "006~ASP 0198~Server shutting down~Cannot process request"
  270. IDE_CANT_STORE_JAVASCRIPT_OBJECT "006~ASP 0199~Disallowed object use~Cannot add JScript objects to the session."
  271. IDE_APPLICATION_CREATE_EVENT_FAILED "006~ASP 0205~Change Notification~Failed to create event for change notification."
  272. IDE_REQUEST_BINARYREAD_NA "006~ASP 0206~Cannot call BinaryRead~Cannot call BinaryRead after using Request.Form collection."
  273. IDE_REQUEST_BINREAD_BAD_ARG "006~ASP 0247~Bad Argument to BinaryRead~The argument to BinaryRead must be non-negative."
  274. IDE_REQUEST_FORMCOLLECTION_NA "006~ASP 0207~Cannot use Request.Form~Cannot use Request.Form collection after calling BinaryRead."
  275. IDE_REQUEST_GENERICCOLLECTION_NA "006~ASP 0208~Cannot use generic Request collection~Cannot use the generic Request collection after calling BinaryRead."
  276. IDE_TEMPLATE_BAD_TRANSACTED_VALUE "006~ASP 0209~Illegal value for TRANSACTION property~The TRANSACTION property can only be REQUIRED, REQUIRES_NEW, SUPPORTED or NOT_SUPPORTED."
  277. IDE_RESPONSE_NOT_IMPLEMENTED "006~ASP 0210~Method not implemented~This method has not yet been implemented."
  278. IDE_TEMPLATE_BAD_SESSION_VALUE "006~ASP 0215~Illegal value for ENABLESESSIONSTATE property~The ENABLESESSIONSTATE property can only be TRUE or FALSE."
  279. IDE_TEMPLATE_CANT_ENABLE_SESSIONS "006~ASP 0244~Cannot Enable Session State~Session state cannot be enabled when it has been disabled in the application."
  280. IDE_TEMPLATE_BAD_OBJECT_SCOPE "006~ASP 0217~Invalid Scope in object tag~Object scope must be Page, Session or Application."
  281. IDE_EXECUTOR_DTC_NOT_RUNNING "006~ASP 0216~MSDTC Service not running~Transactional web pages cannot be run if the MSDTC service is not running."
  282. IDE_TEMPLATE_NO_LCID "006~ASP 0218~Missing LCID~The LCID attribute is missing."
  283. IDE_TEMPLATE_BAD_LCID "006~ASP 0219~Invalid LCID~The specified LCID is not available."
  284. IDE_OBJECTCONTEXT "ObjectContext object"
  285. IDE_OBJECTCONTEXT_NOT_TRANSACTED "006~ASP 0220~Script isnt transacted~This ASP file must be transacted in order to use the ObjectContext object."
  286. IDE_TEMPLATE_BAD_TYPELIB_SPEC "006~ASP 0222~Invalid TypeLib Specification~METADATA tag contains an invalid Type Library specification."
  287. IDE_TEMPLATE_BAD_TYPELIB_REG_SPEC "006~ASP 0223~TypeLib Not Found~METADATA tag contains a Type Library specification that does not match any Registry entry."
  288. IDE_TEMPLATE_LOAD_TYPELIB_FAILED "006~ASP 0224~Cannot load TypeLib~Cannot load Type Library specified in the METADATA tag."
  289. IDE_TEMPLATE_WRAP_TYPELIB_FAILED "006~ASP 0225~Cannot wrap TypeLibs~Cannot create a Type Library Wrapper object from the Type Libraries specified in METADATA tags."
  290. IDE_CANT_MOD_STATICOBJECTS "006~ASP 0226~Cannot modify StaticObjects~StaticObjects collection cannot be modified at run time."
  291. IDE_SERVER_EXECUTE_FAILED "006~ASP 0227~Server.Execute Failed~The call to Server.Execute failed"
  292. IDE_SERVER_EXECUTE_CANTLOAD "006~ASP 0228~Server.Execute Error~The call to Server.Execute failed while loading the page."
  293. IDE_SERVER_TRANSFER_FAILED "006~ASP 0229~Server.Transfer Failed~The call to Server.Transfer failed"
  294. IDE_SERVER_TRANSFER_CANTLOAD "006~ASP 0230~Server.Transfer Error~The call to Server.Transfer failed while loading the page."
  295. IDE_SERVER_EXECUTE_INVALID_PATH "006~ASP 0231~Server.Execute Error~Invalid URL form or fully-qualified absolute URL was used. Use relative URLs."
  296. IDE_TEMPLATE_BAD_COOKIE_SPEC "006~ASP 0232~Invalid Cookie Specification~METADATA tag contains an invalid cookie specification."
  297. IDE_TEMPLATE_LOAD_COOKIESCRIPT_FAILED "006~ASP 0233~Cannot load cookie script source~Cannot load cookie script source file specified in the METADATA tag."
  298. IDE_SERVER_TRANSFER_INVALID_PATH "006~ASP 0235~Server.Transfer Error~Invalid URL form or fully-qualified absolute URL was used. Use relative URLs."
  299. IDE_TEMPLATE_BAD_COOKIE_SPEC_SRC "006~ASP 0236~Invalid Cookie Specification~METADATA tag contains an invalid or missing SRC parameter."
  300. IDE_TEMPLATE_BAD_COOKIE_SPEC_NAME "006~ASP 0237~Invalid Cookie Specification~METADATA tag contains an invalid or missing NAME parameter."
  301. IDE_TEMPLATE_UNICODE_NOTSUP "006~ASP 0239~Cannot process file~UNICODE ASP files are not supported."
  302. IDE_SCRIPT_ENGINE_GPF "007~ASP 0240~Script Engine Exception~A ScriptEngine threw exception '%X' in '%s' from '%s'."
  303. IDE_SCRIPT_OBJ_INSTANTIATE_FAILED "007~ASP 0241~CreateObject Exception~The CreateObject of '%s' caused exception %X."
  304. IDE_SCRIPT_OBJ_ONPAGE_QI_FAILED "007~ASP 0242~Query OnStartPage Interface Exception~Querying Object '%s''s OnStartPage or OnEndPage methods caused exception %X."
  305. IDE_REQUEST_STREAMONLY "006~ASP 0243~Cannot use IStream on Request~Cannot use IStream on Request object after using Request.Form collection or Request.BinaryRead."
  306. // This fragment serves as a description when the buffer used for GetSzPatternInserts overflows.
  307. // There is therefore no need for the "nnn~ASP xxxx~" prefix.
  308. IDE_TOOBIG "No further information is available. (Error description is too long; please check for missing end delimiters, such as '%>'.)"
  309. END