KB IssueInclude file returns the error Missing File or Virtual attribute when running the page.
Issue DetailsYou may receive the following error if the wrong character is used in your INCLUDE FILE.
Active Server Pages error 'ASP 0128'
Missing File or Virtual attribute
/Check.asp, line 1
The Include file name must be specified using either the File or Virtual attribute.
Recreate Issue<!--#include file-"../MyFile.asp"-->
In this example, we use a DASH -, which is the wrong character to use in the INCLUDE FILE.
Resolve Issue<!--#include file="../MyFile.asp"-->
As you can see, we have replaced the DASH with an EQUAL sign, as called for.