html 如何覆盖,如何覆盖@ Html.LabelFor模板?

这段代码展示了如何扩展ASP.NET MVC的`HtmlHelper`,以创建带有自定义HTML的`LabelFor`方法。方法允许在标签文本前后插入HTML,并提供了多种重载形式,支持指定额外的HTML属性。
摘要由CSDN通过智能技术生成

I expanded upon balealexandre's answer and added in the ability to specify HTML to include both before and after your label text. I added a bunch of method overloads and comments. I hope this helps folks!

Also snagged information from here: Html inside label using Html helper

namespace System.Web.Mvc.Html

{

public static class LabelExtensions

{

/// Creates a Label with custom Html before the label text. Only starting Html is provided.

/// Html to preempt the label text.

/// MVC Html for the Label

public static MvcHtmlString LabelFor(this HtmlHelper html, Expression> expression, Func startHtml)

{

return LabelFor(html, expression, startHtml, null, new RouteValueDictionary("new {}"));

}

/// Creates a Label with custom Html before the label text. Starting Html and a single Html attribute is provided.

/// Html to preempt the label text.

/// A single Html attribute to include.

/// MVC Html for the Label

public static MvcHtmlString LabelFor(this HtmlHelper html, Expression> expression, Func startHtml, object htmlAttributes)

{

return LabelFor(html, expression, startHtml, null, new RouteValueDictionary(htmlAttributes));

}

/// Creates a Label with custom Html before the label text. Starting Html and a collection of Html attributes are provided.

/// Html to preempt the label text.

/// A collection of Html attributes to include.

/// MVC Html for the Label

public static MvcHtmlString LabelFor(this HtmlHelper html, Expression> expression, Func startHtml, IDictionary htmlAttributes)

{

return LabelFor(html, expression, startHtml, null, htmlAttributes);

}

/// Creates a Label with custom Html before and after the label text. Starting Html and ending Html are provided.

/// Html to preempt the label text.

/// Html to follow the label text.

/// MVC Html for the Label

public static MvcHtmlString LabelFor(this HtmlHelper html, Expression> expression, Func startHtml, Func endHtml)

{

return LabelFor(html, expression, startHtml, endHtml, new RouteValueDictionary("new {}"));

}

/// Creates a Label with custom Html before and after the label text. Starting Html, ending Html, and a single Html attribute are provided.

/// Html to preempt the label text.

/// Html to follow the label text.

/// A single Html attribute to include.

/// MVC Html for the Label

public static MvcHtmlString LabelFor(this HtmlHelper html, Expression> expression, Func startHtml, Func endHtml, object htmlAttributes)

{

return LabelFor(html, expression, startHtml, endHtml, new RouteValueDictionary(htmlAttributes));

}

/// Creates a Label with custom Html before and after the label text. Starting Html, ending Html, and a collection of Html attributes are provided.

/// Html to preempt the label text.

/// Html to follow the label text.

/// A collection of Html attributes to include.

/// MVC Html for the Label

public static MvcHtmlString LabelFor(this HtmlHelper html, Expression> expression, Func startHtml, Func endHtml, IDictionary htmlAttributes)

{

ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, html.ViewData);

string htmlFieldName = ExpressionHelper.GetExpressionText(expression);

//Use the DisplayName or PropertyName for the metadata if available. Otherwise default to the htmlFieldName provided by the user.

string labelText = metadata.DisplayName ?? metadata.PropertyName ?? htmlFieldName.Split('.').Last();

if (String.IsNullOrEmpty(labelText))

{

return MvcHtmlString.Empty;

}

//Create the new label.

TagBuilder tag = new TagBuilder("label");

//Add the specified Html attributes

tag.MergeAttributes(htmlAttributes);

//Specify what property the label is tied to.

tag.Attributes.Add("for", html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldId(htmlFieldName));

//Run through the various iterations of null starting or ending Html text.

if (startHtml == null && endHtml == null) tag.InnerHtml = labelText;

else if (startHtml != null && endHtml == null) tag.InnerHtml = string.Format("{0}{1}", startHtml(null).ToHtmlString(), labelText);

else if (startHtml == null && endHtml != null) tag.InnerHtml = string.Format("{0}{1}", labelText, endHtml(null).ToHtmlString());

else tag.InnerHtml = string.Format("{0}{1}{2}", startHtml(null).ToHtmlString(), labelText, endHtml(null).ToHtmlString());

return MvcHtmlString.Create(tag.ToString());

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值