./當(dāng)前目錄
/網(wǎng)站主目錄
../上層目錄
~/網(wǎng)站虛擬目錄
如果當(dāng)前的網(wǎng)站目錄為E:\wwwroot 應(yīng)用程序虛擬目錄為E:\wwwroot\company 瀏覽的頁面路徑為E:\wwwroot\company\news\show.asp
在show.asp頁面中使用
Server.MapPath("./") 返回路徑為:E:\wwwroot\company\news
Server.MapPath("/") 返回路徑為:E:\wwwroot
Server.MapPath("../") 返回路徑為:E:\wwwroot\company
Server.MapPath("~/") 返回路徑為:E:\wwwroot\company
server.MapPath(request.ServerVariables("Path_Info"))
Request.ServerVariables("Path_Translated")
上面兩種方式返回路徑為 D:\wwwroot\company\news\show.asp