web-dev-qa-db-ja.com

HTMLをHtml.ActionLink()に追加し、さらにリンクテキストを追加しませんか?

2つの質問があります。

  1. MVCビューでHtml.ActionLink()を使用しているときに、リンクテキストを表示しない方法を考えています(実際、これはSite.Masterです)。

リンクテキストを許可しないオーバーロードされたバージョンはありません。空のstringだけを渡そうとすると、コンパイラは空でない文字列が必要であると通知します。

どうすれば修正できますか?

  1. <span>タグをアンカータグ内に配置する必要がありますが、Html.ActionLink();では機能しません。私は次の出力を見たいです:

    スパンテキスト

ASP.NET MVCのアンカータグ内にタグを配置するにはどうすればよいですか?

160
MegaMatt

Html.ActionLinkを使用する代わりに、Url.Actionを介してURLをレンダリングできます。

<a href="<%= Url.Action("Index", "Home") %>"><span>Text</span></a>
<a href="@Url.Action("Index", "Home")"><span>Text</span></a>

そして、あなたが持つことができる空白のURLを行うには

<a href="<%= Url.Action("Index", "Home") %>"></a>
<a href="@Url.Action("Index", "Home")"></a>
310
David

カスタムHtmlHelper拡張機能も別のオプションです。 :ParameterDictionaryは自分のタイプです。 RouteValueDictionaryを置き換えることもできますが、別の方法で構築する必要があります。

public static string ActionLinkSpan( this HtmlHelper helper, string linkText, string actionName, string controllerName, object htmlAttributes )
{
    TagBuilder spanBuilder = new TagBuilder( "span" );
    spanBuilder.InnerHtml = linkText;

    return BuildNestedAnchor( spanBuilder.ToString(), string.Format( "/{0}/{1}", controllerName, actionName ), htmlAttributes );
}

private static string BuildNestedAnchor( string innerHtml, string url, object htmlAttributes )
{
    TagBuilder anchorBuilder = new TagBuilder( "a" );
    anchorBuilder.Attributes.Add( "href", url );
    anchorBuilder.MergeAttributes( new ParameterDictionary( htmlAttributes ) );
    anchorBuilder.InnerHtml = innerHtml;

    return anchorBuilder.ToString();
}
17
tvanfosson

ここでは、手動で(タグを使用して)リンクを作成するときに使用できないajaxまたは一部の機能を使用する必要がある場合の(低レベルで汚い)回避策を示します。

<%= Html.ActionLink("LinkTextToken", "ActionName", "ControllerName").ToHtmlString().Replace("LinkTextToken", "Refresh <span class='large Sprite refresh'></span>")%>

'LinkTextToken'の代わりに任意のテキストを使用できます。それは、置き換えられるだけで、actionlink内の他の場所に出現しないことが重要です。

12
Goran Obradovic

Url.Actionの代わりにHtml.ActionLinkを使用するだけです:

<li id="home_nav"><a href="<%= Url.Action("ActionName") %>"><span>Span text</span></a></li>
12
Craig Stuntz

これはいつも私にとってはうまくいきました。面倒ではなく、とてもきれいです。

<a href="@Url.Action("Index", "Home")"><span>Text</span></a>

6
dbarth

私はカスタム拡張メソッドになりました。アンカーオブジェクト内にHTMLを配置する場合、リンクテキストは内側のHTMLの左側または右側のいずれかになります。このため、左右の内部HTMLのパラメーターを提供することにしました-リンクテキストは中央にあります。左右の内部HTMLはオプションです。

拡張メソッドActionLinkInnerHtml:

    public static MvcHtmlString ActionLinkInnerHtml(this HtmlHelper helper, string linkText, string actionName, string controllerName, RouteValueDictionary routeValues = null, IDictionary<string, object> htmlAttributes = null, string leftInnerHtml = null, string rightInnerHtml = null)
    {
        // CONSTRUCT THE URL
        var urlHelper = new UrlHelper(helper.ViewContext.RequestContext);
        var url = urlHelper.Action(actionName: actionName, controllerName: controllerName, routeValues: routeValues);

        // CREATE AN ANCHOR TAG BUILDER
        var builder = new TagBuilder("a");
        builder.InnerHtml = string.Format("{0}{1}{2}", leftInnerHtml, linkText, rightInnerHtml);
        builder.MergeAttribute(key: "href", value: url);

        // ADD HTML ATTRIBUTES
        builder.MergeAttributes(htmlAttributes, replaceExisting: true);

        // BUILD THE STRING AND RETURN IT
        var mvcHtmlString = MvcHtmlString.Create(builder.ToString());
        return mvcHtmlString;
    }

使用例:

以下に使用例を示します。この例では、リンクテキストの右側にある内部HTMLのみが必要でした...

@Html.ActionLinkInnerHtml(
    linkText: "Hello World"
        , actionName: "SomethingOtherThanIndex"
        , controllerName: "SomethingOtherThanHome"
        , rightInnerHtml: "<span class=\"caret\" />"
        )

結果:

これにより、次のHTMLが生成されます...

<a href="/SomethingOtherThanHome/SomethingOtherThanIndex">Hello World<span class="caret" /></a>
2
barrypicker

@tvanfossonの答えを大幅に拡大しました。私はそれに触発され、より一般的なものにすることにしました。

    public static MvcHtmlString NestedActionLink(this HtmlHelper htmlHelper, string linkText, string actionName,
        string controllerName, object routeValues = null, object htmlAttributes = null,
        RouteValueDictionary childElements = null)
    {
        var htmlAttributesDictionary = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes);

        if (childElements != null)
        {
            var urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext);

            var anchorTag = new TagBuilder("a");
            anchorTag.MergeAttribute("href",
                routeValues == null
                    ? urlHelper.Action(actionName, controllerName)
                    : urlHelper.Action(actionName, controllerName, routeValues));
            anchorTag.MergeAttributes(htmlAttributesDictionary);
            TagBuilder childTag = null;

            if (childElements != null)
            {
                foreach (var childElement in childElements)
                {
                    childTag = new TagBuilder(childElement.Key.Split('|')[0]);
                    object elementAttributes;
                    childElements.TryGetValue(childElement.Key, out elementAttributes);

                    var attributes = HtmlHelper.AnonymousObjectToHtmlAttributes(elementAttributes);

                    foreach (var attribute in attributes)
                    {
                        switch (attribute.Key)
                        {
                            case "@class":
                                childTag.AddCssClass(attribute.Value.ToString());
                                break;
                            case "InnerText":
                                childTag.SetInnerText(attribute.Value.ToString());
                                break;
                            default:
                                childTag.MergeAttribute(attribute.Key, attribute.Value.ToString());
                                break;
                        }
                    }
                    childTag.ToString(TagRenderMode.SelfClosing);
                    if (childTag != null) anchorTag.InnerHtml += childTag.ToString();
                }                    
            }
            return MvcHtmlString.Create(anchorTag.ToString(TagRenderMode.Normal));
        }
        else
        {
            return htmlHelper.ActionLink(linkText, actionName, controllerName, routeValues, htmlAttributesDictionary);
        }
    }
1
william-kid

これは、bootstrapといくつかのグリピコンを使用するときに役立つと思いました。

<a class="btn btn-primary" 
    href="<%: Url.Action("Download File", "Download", 
    new { id = msg.Id, distributorId = msg.DistributorId }) %>">
    Download
    <span class="glyphicon glyphicon-Paperclip"></span>
</a>

これにより、ダウンロードリンクを表すためのNice Paperclipアイコンが付いたコントローラーへのリンクを含むAタグが表示され、html出力はクリーンに保たれます。

1
Terry Kernan

bootstrapコンポーネントを使用した私のソリューション:

<a class="btn btn-primary" href="@Url.Action("resetpassword", "Account")">
    <span class="glyphicon glyphicon-user"></span> Reset Password
</a>
0
Carlos Toledo

以下のコードを試してみてください。

 @Html.ActionLink(" SignIn", "Login", "Account", routeValues: null, htmlAttributes: new {  id = "loginLink" ,**@class="glyphicon glyphicon-log-in"** }) 
0
user3778502

とても簡単です。

グリフィコンアイコンと「ウィッシュリスト」のようなものが必要な場合は、

<span class="glyphicon-heart"></span> @Html.ActionLink("Wish List (0)", "Index", "Home")
0
DanKodi