2つの質問があります。
Html.ActionLink()
を使用しているときに、リンクテキストを表示しない方法を考えています(実際、これはSite.Master
です)。リンクテキストを許可しないオーバーロードされたバージョンはありません。空のstring
だけを渡そうとすると、コンパイラは空でない文字列が必要であると通知します。
どうすれば修正できますか?
<span>
タグをアンカータグ内に配置する必要がありますが、Html.ActionLink();
では機能しません。私は次の出力を見たいです:
スパンテキスト
ASP.NET MVCのアンカータグ内にタグを配置するにはどうすればよいですか?
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>
カスタム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();
}
ここでは、手動で(タグを使用して)リンクを作成するときに使用できないajaxまたは一部の機能を使用する必要がある場合の(低レベルで汚い)回避策を示します。
<%= Html.ActionLink("LinkTextToken", "ActionName", "ControllerName").ToHtmlString().Replace("LinkTextToken", "Refresh <span class='large Sprite refresh'></span>")%>
'LinkTextToken'の代わりに任意のテキストを使用できます。それは、置き換えられるだけで、actionlink内の他の場所に出現しないことが重要です。
Url.Action
の代わりにHtml.ActionLink
を使用するだけです:
<li id="home_nav"><a href="<%= Url.Action("ActionName") %>"><span>Span text</span></a></li>
これはいつも私にとってはうまくいきました。面倒ではなく、とてもきれいです。
<a href="@Url.Action("Index", "Home")"><span>Text</span></a>
私はカスタム拡張メソッドになりました。アンカーオブジェクト内に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>
@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);
}
}
これは、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出力はクリーンに保たれます。
bootstrapコンポーネントを使用した私のソリューション:
<a class="btn btn-primary" href="@Url.Action("resetpassword", "Account")">
<span class="glyphicon glyphicon-user"></span> Reset Password
</a>
以下のコードを試してみてください。
@Html.ActionLink(" SignIn", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" ,**@class="glyphicon glyphicon-log-in"** })
とても簡単です。
グリフィコンアイコンと「ウィッシュリスト」のようなものが必要な場合は、
<span class="glyphicon-heart"></span> @Html.ActionLink("Wish List (0)", "Index", "Home")