好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

Asp.net获取当前目录的方法小结

方法一:

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

方法二:

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

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

我推荐使用第二种

查看更多关于Asp.net获取当前目录的方法小结的详细内容...

  阅读:41次