/*=================================================================== Microsoft Denali Microsoft Confidential. Copyright 1996 Microsoft Corporation. All Rights Reserved. Component: Resources File: Denali.rc Owner: LeiJin (was AndrewS) This file contains all resources used by Denali ===================================================================*/ #include "denevent.rc" #include "resource.h" #include "denver.h" // denali version info /*=================================================================== Type Librarys ===================================================================*/ 1 TYPELIB DISCARDABLE "asp.tlb" /*=================================================================== String Table ===================================================================*/ /* The format of error strings is: DefaultMask~ErrorCode~Short Description~LongDescription NOTE: ~ is not allowed in Short Description and Long Description. NOTE: DefaultMask, ErrorCode, and ShortDescription should not be empty. NOTE: For explanation of DefaultMask, please refer to error.h header file. String with no format should be named as IDS_String for regular strings. IDH_String for header. CONSIDER: rename unformatted string. ****IMPORTANT***** NOTE: The NEXT UNUSED ERROR CODE is "ASP 0248". Please use this number for the next addin of formatted error string, and update the NEXT UNUSED ERROR CODE accordingly. */ STRINGTABLE DISCARDABLE BEGIN // // General errors // IDE_OOM "007~ASP 0100~Out of memory~Unable to allocate required memory." IDE_UNEXPECTED "007~ASP 0101~Unexpected error~The function returned |." IDE_EXPECTING_STR "007~ASP 0102~Expecting string input~The function expects a string as input." IDE_EXPECTING_INT "007~ASP 0103~Expecting numeric input~The function expects a number as input." IDE_NOT_ALLOWED "007~ASP 0104~Operation not Allowed~" IDE_BAD_ARRAY_INDEX "007~ASP 0105~Index out of range~An array index is out of range." IDE_TYPE_MISMATCH "007~ASP 0106~Type Mismatch~An unhandled data type was encountered." IDE_STACK_OVERFLOW "007~ASP 0107~Stack Overflow~The data being processed is over the allowed limit." // The following string is ONLY ever logged to the NT event log. It never goes to the browser 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." // String expansions of boolean True and False IDS_TRUE "True" IDS_FALSE "False" // The Default strings get load into registry. IDS_DEFAULTMSG_DENIED "Error: Access is Denied." IDS_DEFAULTMSG_ERROR "An error occurred on the server when processing the URL. Please contact the system administrator." IDS_DEFAULTMSG_BUSY "The server is under heavy load, please try again later." IDS_IIS_NOTINSTALLED "Internet Information Server(IIS) is not installed, Active Server Pages requires IIS installed first." IDS_CACHE_DIR_MISSING "The Disk Cache Directory does not exist or cannot be accessed" // WARNING: The following string must NOT be localized IDS_SCRIPTLANGUAGE "VBScript" // WARNING: The preceding string must NOT be localized // Error browser template, used in logging to the browser. // NOTE, use \042 for '\"' in resource file, STRINGTABLE // NOTE, can not have empty strings, so, " " for BEGIN, END, etc. //EXTRACT following comments from error.cpp //The order of ErrTemplate_Index should be exactly the same order as the IDS_BROWSER_TEMPLATE //in the resource.h, and as the same order we output the template to the browser. //Implementation will loop through the index and picking the string from the resource file. //Implementation will also loop through the index and write the string to browser. //Changing order of IDS_BROWSER_TEMPLATE will affect implementation in error.cpp. IDS_BROWSER_TEMPLATE_BEGIN " " IDS_BROWSER_TEMPLATE_ENGINE_BEGIN "\n

" IDS_BROWSER_TEMPLATE_ENGINE_END " " IDS_BROWSER_TEMPLATE_ERROR_BEGIN "error '" IDS_BROWSER_TEMPLATE_ERROR_END "'" IDS_BROWSER_TEMPLATE_SHORT_BEGIN "\n

\n" IDS_BROWSER_TEMPLATE_SHORT_END "" IDS_BROWSER_TEMPLATE_FILE_BEGIN "\n

\n" IDS_BROWSER_TEMPLATE_FILE_END "" IDS_BROWSER_TEMPLATE_LINE_BEGIN ", line " IDS_BROWSER_TEMPLATE_LINE_END "" IDS_BROWSER_TEMPLATE_CODE_BEGIN "\r\n

"
	IDS_BROWSER_TEMPLATE_CODE_END			"
" IDS_BROWSER_TEMPLATE_LONG_BEGIN "\n

\n" IDS_BROWSER_TEMPLATE_LONG_END "\n" IDS_BROWSER_TEMPLATE_END " " IDS_DEBUG_APP "Microsoft Active Server Pages" IDS_LOG_IISLOGFAILED "IIS log failed to write entry, " IDS_COMPILER "Active Server Pages Compiler" IDS_ENGINE "Active Server Pages" IDS_LOGTOEVENTLOG_FILE "File " IDS_LOGTOEVENTLOG_LINE "Line " IDS_MDOORANGE_FORMAT "Metabase key %d is out of range. Using %d as default." //IDS_ERROR_PREFIX is used in IIS log only, as the PREFIX to error log. IDS_IISLOG_PREFIX "|ASP" IDS_RE_REGSVR_ASP "Error while reading default settings. please do regsvr32 asp.dll." IDS_SCRIPT_ERROR "ASP Script Error" IDS_DEBUGGER_TEMPLATE_BEGIN "error '" IDS_DEBUGGER_TEMPLATE_END "'" IDS_DEBUGGING_DISABLED " - Application Debugging is Disabled" IDS_DEFAULTPERSISTDIR "%windir%\\system32\\inetsrv\\ASP Compiled Templates" //HTTP Header, do not change! IDH_204_NO_CONTENT "204 No Content" IDH_403_FORBIDDEN "403 Forbidden" IDH_404_OBJECT_NOT_FOUND "404 Object Not Found" IDH_500_SERVER_ERROR "500 Server Error" IDH_401_3_ACCESS_DENIED "401 Access Denied" //Encrypted ASP printable file header IDS_EASP_PRINTABLE_HEADER " *** Encrypted ASP File *** \n\n" // // Script Engine/Manager errors // // Last Resort...CONSIDER, change to IDS, usein ComposeErrorString. IDE_SCRIPT_CANT_LOAD_OBJ "006~ASP 0108~Create object failed~An error occurred while creating object '%s'." IDE_SCRIPT_METHOD_NOT_FOUND "006~ASP 0109~Member not found~" IDE_SCRIPT_UNKNOWN_NAME "006~ASP 0110~Unknown name~" IDE_SCRIPT_UNKNOWN_INTERFACE "006~ASP 0111~Unknown interface~" IDE_SCRIPT_MISSING_PARAMETER "006~ASP 0112~Missing parameter~" 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." 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." IDE_SCRIPT_GPF "007~ASP 0115~Unexpected error~A trappable error (%X) occurred in an external object. The script cannot continue running." IDE_SCRIPT_UNKNOWN "An external object raised an error. No Error Description Available." // // CTemplate errors // IDE_TEMPLATE_ERRMSG_TITLE "ASP Preprocessor Error" IDE_TEMPLATE_ERRMSG_PREFIX "Error in script file '|' on line |: " IDE_TEMPLATE_NO_CLOSE_PSCRIPT "006~ASP 0116~Missing close of script delimiter~The Script block lacks the close of script tag (%>)." IDE_TEMPLATE_NO_CLOSE_TSCRIPT "006~ASP 0117~Missing close of script tag~The Script block lacks the close of script tag () or close of tag symbol (>)." IDE_TEMPLATE_NO_CLOSE_OBJECT "006~ASP 0118~Missing close of object tag~The Object block lacks the close of object tag () or close of tag symbol (>)." 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." 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'." IDE_TEMPLATE_VALUE_REQUIRED "006~ASP 0238~Missing attribute value~No value was specified for the '|' attribute." 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." 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." IDE_TEMPLATE_NO_OBJECT_NAME "006~ASP 0123~Missing Id attribute~The required Id attribute of the Object tag is missing." IDE_TEMPLATE_NO_ENGINE_NAME "006~ASP 0124~Missing Language attribute~The required Language attribute of the Script tag is missing." IDE_TEMPLATE_NO_ATTRIBUTE_DELIMITER "006~ASP 0125~Missing close of attribute~The value of the '|' attribute has no closing delimiter." IDE_TEMPLATE_BAD_INCLUDE "006~ASP 0126~Include file not found~The include file '|' was not found." 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 (-->)." 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." IDE_TEMPLATE_BAD_PROGLANG "006~ASP 0129~Unknown scripting language~The scripting language '|' is not found on the server." IDE_TEMPLATE_BAD_FILE_TAG "006~ASP 0130~Invalid File attribute~File attribute '|' cannot start with forward slash or back slash." IDE_TEMPLATE_DISALLOWED_PARENT_PATH "006~ASP 0131~Disallowed Parent Path~The Include file '|' cannot contain '..' to indicate the parent directory." IDE_TEMPLATE_ERRMSG_GENERIC "006~ASP 0132~Compilation Error~The Active Server Page '|' could not be processed." IDE_TEMPLATE_BAD_CLASSID "006~ASP 0133~Invalid ClassID attribute~The object tag has an invalid ClassID of '|'." IDE_TEMPLATE_BAD_PROGID "006~ASP 0134~Invalid ProgID attribute~The object has an invalid ProgID of '|'." 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." 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." 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." IDE_TEMPLATE_NESTED_TSCRIPT "006~ASP 0138~Nested Script Block~A script block cannot be placed inside another script block." IDE_TEMPLATE_NESTED_OBJECT "006~ASP 0139~Nested Object~An object tag cannot be placed inside another object tag." 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." IDE_TEMPLATE_PAGE_COMMAND_REPEATED "006~ASP 0141~Page Command Repeated~The @ command can only be used once within the Active Server Page." IDE_TEMPLATE_BAD_PROGLANG_IN_REGISTRY "006~ASP 0201~Invalid Default Script Language~The default script language specified for this application is invalid." IDE_TEMPLATE_NO_CODEPAGE "006~ASP 0202~Missing Code Page~The code page attribute is missing." IDE_TEMPLATE_BAD_CODEPAGE "006~ASP 0203~Invalid Code Page~The specified code page attribute is invalid." IDE_TEMPLATE_BAD_AT_COMMAND "006~ASP 0221~Invalid @ Command directive~The specified '|' option is unknown or invalid." 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