ASP.NET Server.MapPath 相對路徑和絕對路徑

 ./ 表示當前目錄
  / 表示網站主目錄
../ 表示上層目錄
~/ 表示網站虛擬目錄

如果當前的網站目錄爲E:\wwwroot   應用程序虛擬目錄爲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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章