15

Global.asax(HttpApplication)、HttpModule、HttpHandlerなどの非ページコンテキスト内から「〜/ whatever」を解決したいのですが、コントロール(およびページ)に固有の解決メソッドしか見つかりません。

アプリには、これをページコンテキストの外にマッピングできる十分な知識が必要だと思います。いいえ?または、少なくとも、アプリのルートがわかっている場合は、他の状況でも解決できるはずです。

更新:理由は、web.configurationファイルに「〜」パスを貼り付けており、前述の非制御シナリオからそれらを解決したいからです。

更新2:ファイルシステムパスではなく、Control.Resolve(..)URLの動作などのWebサイトルートにそれらを解決しようとしています。

4

6 に答える 6

37

答えは次のとおりです 。ASP.Net:共有/静的関数でのSystem.Web.UI.Control.ResolveUrl()の使用

string absoluteUrl = VirtualPathUtility.ToAbsolute("~/SomePage.aspx");
于 2010-04-07T03:18:51.463 に答える
1

HttpContext.Currentオブジェクトに直接アクセスすることでそれを行うことができます:

var resolved = HttpContext.Current.Server.MapPath("~/whatever")

注意すべき点の1つは、は実際のリクエストのコンテキストではHttpContext.Current非アクティブになるだけであるということです。たとえばnull、イベントでは利用できません。Application_Stop

于 2010-04-07T02:05:35.883 に答える
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;
    }
}
于 2013-02-18T11:07:26.197 に答える
0

私はこの吸盤をデバッグしていませんが、Controlの外部の.NET FrameworkでResolveメソッドが見つからないため、手動の解決策としてそこに投げています。

これは私にとって「〜/何でも」で機能しました。

/// <summary>
/// Try to resolve a web path to the current website, including the special "~/" app path.
/// This method be used outside the context of a Control (aka Page).
/// </summary>
/// <param name="strWebpath">The path to try to resolve.</param>
/// <param name="strResultUrl">The stringified resolved url (upon success).</param>
/// <returns>true if resolution was successful in which case the out param contains a valid url, otherwise false</returns>
/// <remarks>
/// If a valid URL is given the same will be returned as a successful resolution.
/// </remarks>
/// 
static public bool TryResolveUrl(string strWebpath, out string strResultUrl) {

    Uri uriMade = null;
    Uri baseRequestUri = new Uri(HttpContext.Current.Request.Url.GetLeftPart(UriPartial.Authority));

    // Resolve "~" to app root;
    // and create http://currentRequest.com/webroot/formerlyTildeStuff
    if (strWebpath.StartsWith("~")) {
        string strWebrootRelativePath = string.Format("{0}{1}", 
            HttpContext.Current.Request.ApplicationPath, 
            strWebpath.Substring(1));

        if (Uri.TryCreate(baseRequestUri, strWebrootRelativePath, out uriMade)) {
            strResultUrl = uriMade.ToString();
            return true;
        }
    }

    // or, maybe turn given "/stuff" into http://currentRequest.com/stuff
    if (Uri.TryCreate(baseRequestUri, strWebpath, out uriMade)) {
        strResultUrl = uriMade.ToString();
        return true;
    }

    // or, maybe leave given valid "http://something.com/whatever" as itself
    if (Uri.TryCreate(strWebpath, UriKind.RelativeOrAbsolute, out uriMade)) {
        strResultUrl = uriMade.ToString();
        return true;
    }

    // otherwise, fail elegantly by returning given path unaltered.    
    strResultUrl = strWebpath;
    return false;
}
于 2010-04-07T02:26:52.087 に答える
0
public static string ResolveUrl(string url)
{
    if (string.IsNullOrEmpty(url))
    {
        throw new ArgumentException("url", "url can not be null or empty");
    }
    if (url[0] != '~')
    {
        return url;
    }
    string applicationPath = HttpContext.Current.Request.ApplicationPath;
    if (url.Length == 1)
    {
        return applicationPath;
    }
    int startIndex = 1;
    string str2 = (applicationPath.Length > 1) ? "/" : string.Empty;
    if ((url[1] == '/') || (url[1] == '\\'))
    {
        startIndex = 2;
    }
    return (applicationPath + str2 + url.Substring(startIndex));
}
于 2010-04-07T03:09:33.680 に答える
0

MapPathを使用する代わりに、System.AppDomain.BaseDirectoryを使用してみてください。Webサイトの場合、これがWebサイトのルートである必要があります。次に、「〜」なしでMapPathに渡す予定のものとSystem.IO.Path.Combineを実行します。

于 2010-04-07T03:29:40.220 に答える