3

我在类库中有这段代码:

string.Format("{0}://{1}", Current.Request.Url.Scheme, Current.Request.Url.Authority);

如果应用程序部署在根域而不是子域中,这可以正常工作。

我也想调整上述内容以适用于子域。在剃刀代码中,我可以使用:

Url.Content("~/")

对于类库(“独立于网络”的 C# 代码)是否有等效项?

4

1 回答 1

2

这个小功能将获取应用程序根文件夹,例如'/''/sub-folder/'

string GetAppRootFolder()
{
    var appRootFolder = HttpContext.Current.Request.ApplicationPath.ToLower();

    if (!appRootFolder.EndsWith("/"))
    {
        appRootFolder += "/";
    }

    return appRootFolder;
}
于 2013-05-22T12:34:19.570 回答