KB Issue
When you add in an INCLUDE FILE to an ASP Document, with the same name of the file it is included in.
Issue Details
Using Includes helps keep your code organized. Sometimes, when we are in a hurry, we write the name of the file we're in instead of the file we need to include.
And this simple mistake will create the following error.

Active Server Pages error 'ASP 0135'
Cyclic Include
/test/main.asp, line 90
The file 'main.asp' is included by itself (perhaps indirectly). Please check include files for other Include statements.
Recreate Issue
Name the file Main.asp
Now, add the include to it.
<!--#include file="main.asp">
Copy
Search Site
Search Google


This will cause the error.
Resolve Issue
The name of the file is Main.asp.
Create another file and add the information that needs to be included in the Main.asp file. Once the file has been created, insert the following statement to your Main.asp file.
<!--#include file="Other.asp">
Copy
Search Site
Search Google