黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP MapPath 方法

asp mappath 方法

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

mappath 方法可把指定的路徑映射到服務(wù)器上相應(yīng)的物理路徑上。

注意:此方法不能用于 session.onend 和 application.onend 中。

語法

server.mappath(path)

參數(shù) 描述
path 必需。映射為物理路徑的相對路徑或絕對路徑。如果該參數(shù)以 / 或 \ 開頭,則返回完整的虛擬路徑。如果該參數(shù)不以 / 或 \ 開頭,則返回相對于正在被處理的 .asp 文件的路徑。

實(shí)例

實(shí)例 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

實(shí)例 2

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

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

或者:

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

server 對象參考手冊 完整的 server 對象參考手冊
相關(guān)文章