我正在尝试在应用程序启动时将应用程序的物理根和相对根存储在内存中。
我做了这样的物理路径:
//Get the physical root and store it
Global.ApplicationPhysicalPath = Request.PhysicalApplicationPath;
但是我无法获得相对路径。我有以下代码可以使用,但它需要将它放在page
对象中:
Global.ApplicationRelativePath = Request.Url.AbsoluteUri.Replace(Request.Url.AbsolutePath, "") + Page.ResolveUrl("~/");
由于
答案 0 :(得分:4)
要在application_start中获取相对路径,请使用以下命令:
protected void Application_Start(object sender, EventArgs e)
{
string path = Server.MapPath("/");
}
答案 1 :(得分:1)
在Global.asax中添加以下代码:
private static string ServerPath { get; set; }
protected void Application_BeginRequest(Object sender, EventArgs e)
{
ServerPath = BaseSiteUrl;
}
protected static string BaseSiteUrl
{
get
{
var context = HttpContext.Current;
if (context.Request.ApplicationPath != null)
{
var baseUrl = context.Request.Url.Scheme + "://" + context.Request.Url.Authority + context.Request.ApplicationPath.TrimEnd('/') + '/';
return baseUrl;
}
return string.Empty;
}
}