7

我试图在应用程序启动时将我的应用程序的物理根和相对根存储在内存中。

我做了这样的物理路径:

    //Get the physical root and store it
    Global.ApplicationPhysicalPath = Request.PhysicalApplicationPath;

但我无法获得相对路径。我有以下代码有效,但它需要将其放入page对象中:

Global.ApplicationRelativePath = Request.Url.AbsoluteUri.Replace(Request.Url.AbsolutePath, "") + Page.ResolveUrl("~/");

谢谢

4

2 回答 2

4

为了在 application_start 中获取相对路径,请使用以下命令:

 protected void Application_Start(object sender, EventArgs e)
 {
     string path = Server.MapPath("/");
 }
于 2013-04-05T08:47:33.800 回答
2

在 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;
        }
    }
于 2013-02-18T11:01:53.690 回答