Disallowed Parent Path error
-------------------------------------------------------
Active Server Pages error 'ASP 0131'
Disallowed Parent Path
/path/to/file1.asp, line 1
The Include file '../file2.asp' cannot contain '..' to
indicate the parent directory.
-------------------------------------------------------
By default ".." (parent paths) are disabled in IIS6 due to security considerations
(for details please refer to following MS KB article -
http://support.microsoft.com/default...b;en-us;332117 )
Please change lines like
<!--#include file="../file2.asp"-->
to
<!--#include virtual="/path/to/file2.asp"-->
/path/to/file2.asp is path to your file starting from document root for your website (/httpdocs/ is not included here)