精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

ASP MapPath 方法

asp mappath 方法

server 對象參考手冊 完整的 server 對象參考手冊

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

實例 2

如何使用一個相對路徑來返回到達正在瀏覽器中查看的頁面的相對物理路徑:

<%
response.write(server.mappath("../"))
%>

或者:

<%
response.write(server.mappath(".."))
%>

server 對象參考手冊 完整的 server 對象參考手冊
相關文章