Server.MapPath方法的應用方法

coolhe發表於2009-04-16
老是忘記Server.MapPath的使用方法了,下面記錄一下,以備後用:
總注:Server.MapPath獲得的路徑都是伺服器上的物理路徑,也就是常說的絕對路徑
1、Server.MapPath("/")
注:獲得應用程式根目錄所在的位置,如 C:\Inetpub\wwwroot\。
2、Server.MapPath("./")
注:獲得所在頁面的當前目錄,等價於Server.MapPath("")。
3、Server.MapPath("../")
注:獲得所在頁面的上級目錄。
4、Server.MapPath("~/")
注:獲得當前應用級程式的目錄,如果是根目錄,就是根目錄,如果是虛擬目錄,就是虛擬目錄所在的位置,如C:\Inetpub\wwwroot\Example\。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/3090/viewspace-590644/,如需轉載,請註明出處,否則將追究法律責任。

相關文章