获得虚拟根目录路径
2014-06-24 16:11:24 访问(2483) 赞(0) 踩(0)
///
/// 获得虚拟根目录路径
///
///
protected static string GetPhyPath()
{
if (HttpContext.Current == null || HttpContext.Current.Request==null)
return "";
if (HttpContext.Current.Request.ApplicationPath == "/")
return "";
return HttpContext.Current.Request.ApplicationPath;
}
标签:
PhyPath 


HttpContext.Current.Request.ApplicationPath 


虚拟根目录 


相对路径 


上一条:
下一条:
相关评论
发表评论