Microsoft KB Archive/255250

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 12:53, 21 July 2020 by X010 (talk | contribs) (Text replacement - """ to """)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Base


PRB: Error Message ASP 0126: The Include File '_ScriptLibrary/pm.asp' Was Not Found

Article ID: 255250

Article Last Modified on 4/22/2001



APPLIES TO

  • Microsoft Visual InterDev 6.0 Standard Edition



This article was previously published under Q255250

SYMPTOMS

When you browse a Web page that was created with Visual InterDev and uses Design-Time controls, you may receive the following error message:

Active Server Pages error 'ASP 0126'
Include file not found
/Folder/Filename.xxx, line 8
The include file '_ScriptLibrary/pm.asp' was not found.

CAUSE

This error occurs because the script library include path in the Active Server Pages (ASP) page is not valid. This happens when you move a file inside of Visual InterDev to another location in the project or when you add files to the project that contain the invalid paths to the script library.

RESOLUTION

In the Visual InterDev source editor, you cannot modify the gray script block that has the invalid include path. To resolve this issue, perform the following steps to reset the path:

  1. Right-click in Visual InterDev source view, and then click Properties.


NOTE: Do not right-click on a design-time control.

  1. Clear Enable scripting object model on the General tab, and then click Apply.
  2. Select Enable scripting object model, and then click Apply.

You may continue to receive the include file error message depending on which design-time controls you added to the ASP page. If you continue to receive the error message, the line number that contains the error message is not part of the gray script block at the top of your ASP page. Because the code is not part of the script block, manually modify the path using the following steps:

  1. From the View menu, select View Controls As Text.
  2. Press Ctrl + G to view the Go To Line dialog box. Type the line number where the error is occurring, and then click OK. The line will look like the following example code:

    <!--#INCLUDE FILE="_ScriptLibrary/DTCObject.ASP"-->
                        

    where DTCObject is the type of object on your page.

  3. Modify the path to the script library to match the path in the gray script block at the top of the ASP page.
  4. From the View menu, select View Controls Graphically.
  5. Save the file.
  6. Repeat these steps for any additional script library include paths.


Keywords: kbprb kbctrl KB255250