mvc怎么套用html模板,asp.net mvc-如何覆盖@ Html.LabelFor模板?

我扩展了balealexandre的答案,并添加了指定HTML的功能,以在标签文本之前和之后都包含HTML。 我添加了一堆方法重载和注释。 希望对大家有帮助!

还从这里获取信息:使用HTML帮助器在标签内部的HTML

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、付费专栏及课程。

余额充值