我试图在应用程序启动时将我的应用程序的物理根和相对根存储在内存中。
我做了这样的物理路径:
//Get the physical root and store it
Global.ApplicationPhysicalPath = Request.PhysicalApplicationPath;
但我无法获得相对路径。我有以下代码有效,但它需要将其放入page
对象中:
Global.ApplicationRelativePath = Request.Url.AbsoluteUri.Replace(Request.Url.AbsolutePath, "") + Page.ResolveUrl("~/");
谢谢