![]() | ||||
|
Search:
Advanced search
|
Browse by category:
|
Glossary | | | Ask question |
| Active Server Pages error ASP 0131 or Server.MapPath() error 'ASP 0175 : 80004005' | ||||
SYMPTOMS:
When you use relative paths in include statements with Microsoft's Active Server Pages (ASP ), browsing a Web page may return an error message similar to the following: Active Server Pages, ASP
0131 or Server.MapPath() error 'ASP 0175 : 80004005' CAUSE : Relative parent paths in include statements use the following form: <!--#include file="../<filename.ext>"--> For example, if you use an include file named "mycode.inc" at the root of your server, the virtual path would be "/mycode.inc." If you use the same include file in a virtual directory named "/includes" on your server, the virtual path would be "/includes/mycode.inc." The syntax example below illustrates how to implement virtual paths: <!--#include virtual="/<virtual path>/<filename.ext>"-->
|
||||