当前位置:Gxlcms > asp.net > Global.asax取物理路径/取绝对路径具体方法

Global.asax取物理路径/取绝对路径具体方法

时间:2021-07-01 10:21:17 帮助过:29人阅读

虚拟路径
代码如下:
Server.MapPath("~/") 取得的就是虚拟路径

取绝对路径
代码如下:
string absolutelyPath =AppDomain.CurrentDomain.BaseDirectory;

取物理路径和应用程序路径

代码如下:
System.Web.HttpContext.Current.Request.ApplicationPath

人气教程排行