萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> asp.net編程 >> Asp.net獲取當前目錄的方法小結

Asp.net獲取當前目錄的方法小結

有時候可能出現找不到類的情況,請引用System.Web.dll  

方法一:

string sPath = System.IO.Path.GetDirectoryName(Page.Request.PhysicalPath)

方法二:

string sPath = System.Web.HttpContext.Current.Request.MapPath("/")                                         

方法三:
string sPath = Page.Server.MapPath("/");

我推薦使用第二種

copyright © 萬盛學電腦網 all rights reserved