Hello,
I have an application installed on IIS 8 whose default file makes include of other files in folders located before the default.asp directory. Exemplifying:
The default.asp file is located at:
httpdocs/www/pasta1/pasta2/pasta3.1/pasta4/default.asp
and I want it to load files located at:
httpdocs/www/pasta1/pasta2/pasta3.2/pasta3.2.1/ficheiro.asp
In default.asp I have:
<!-- #include file="../../pasta3.2.1/lang.asp"-->
However, the IIS internal server error appears to me.
If I put the lang.asp file in the same directory as default.asp, it loads. The idea is this (lang.asp) to be loaded by other applications in other directories.
Can you help me?