ASP MapPath 方法
asp mappath 方法

mappath 方法可把指定的路徑映射到服務器上相應的物理路徑上。
注意:此方法不能用于 session.onend 和 application.onend 中。
語法
server.mappath(path)
參數 | 描述 |
---|---|
path | 必需。映射為物理路徑的相對路徑或絕對路徑。如果該參數以 / 或 \ 開頭,則返回完整的虛擬路徑。如果該參數不以 / 或 \ 開頭,則返回相對于正在被處理的 .asp 文件的路徑。 |
實例
實例 1
舉例,文件 test.asp 位于 c:\inetpub\wwwroot\script。
文件 test.asp (位于 c:\inetpub\wwwroot\script) 包含下列代碼:
<%
response.write(server.mappath("test.html") & "
")
response.write(server.mappath("script/test.html") & "
")
response.write(server.mappath("/script/test.html") & "
")
response.write(server.mappath("script") & "
")
response.write(server.mappath("/") & "
")
response.write(server.mappath("") & "
")
%>
輸出:
c:inetpubwwwrootscripttest.html
c:inetpubwwwrootscriptscripttest.html
c:inetpubwwwrootscripttest.html
c:inetpubwwwrootscript
c:inetpubwwwroot
c:inetpubwwwroot
response.write(server.mappath("test.html") & "
")
response.write(server.mappath("script/test.html") & "
")
response.write(server.mappath("/script/test.html") & "
")
response.write(server.mappath("script") & "
")
response.write(server.mappath("/") & "
")
response.write(server.mappath("") & "
")
%>
輸出:
c:inetpubwwwrootscripttest.html
c:inetpubwwwrootscriptscripttest.html
c:inetpubwwwrootscripttest.html
c:inetpubwwwrootscript
c:inetpubwwwroot
c:inetpubwwwroot
實例 2
如何使用一個相對路徑來返回到達正在瀏覽器中查看的頁面的相對物理路徑:
<%
response.write(server.mappath("../"))
%>
或者:
<%
response.write(server.mappath(".."))
%>
response.write(server.mappath("../"))
%>
或者:
<%
response.write(server.mappath(".."))
%>

相關文章
- ASP Response 對象
- ASP Folder 對象
- ASP Content Linking
- ASP 總結
- 在自己的 PC 上運行 ASP
- ASP Read 方法
- ASP Skip 方法
- ASP WriteBlankLines 方法
- ASP Key 屬性
- ASP Items 方法
- ASP Pics 屬性
- ASP AddHeader 方法
- ASP End 方法
- ASP StaticObjects 集合
- ASP Contents.RemoveAll 方法
- ASP LCID 屬性
- ASP ScriptTimeout 屬性
- ASP HTMLEncode 方法
- ASP GetFileName 方法
- ASP GetParentFolderName 方法