asp.net-mvc – Asp.Net MVC 2 Label自定义文本

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – Asp.Net MVC 2 Label自定义文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法使用LabelFor帮助器并自定义标签文本,而不必在我的模型中使用DisplayNameAttribute?

解决方法

我为我的项目创建了这个html助手:
public static class MyLabelExtensions
{
    public static MvcHtmlString Label(this HtmlHelper htmlHelper,string forName,string labelText)
    {
        return Label(htmlHelper,forName,labelText,(object) null);
    }

    public static MvcHtmlString Label(this HtmlHelper htmlHelper,string labelText,object htmlAttributes)
    {
        return Label(htmlHelper,new RouteValueDictionary(htmlAttributes));
    }
    public static MvcHtmlString Label(this HtmlHelper htmlHelper,IDictionary<string,object> htmlAttributes)
    {
        var tagBuilder = new TagBuilder("label");
        tagBuilder.MergeAttributes(htmlAttributes);
        tagBuilder.MergeAttribute("for",forName.Replace(".",tagBuilder.IdAttributeDotReplacement),true);
        tagBuilder.SetInnerText(labelText);
        return MvcHtmlString.Create(tagBuilder.ToString(TagRenderMode.Normal));
    }

    public static MvcHtmlString LabelFor<TModel,TProperty>(this HtmlHelper<TModel> htmlHelper,Expression<Func<TModel,TProperty>> expression,string labelText)
    {
        return LabelFor(htmlHelper,expression,(object) null);
    }
    public static MvcHtmlString LabelFor<TModel,object htmlAttributes)
    {
        return LabelFor(htmlHelper,new RouteValueDictionary(htmlAttributes));
    }
    public static MvcHtmlString LabelFor<TModel,object> htmlAttributes)
    {
        string inputName = ExpressionHelper.GetExpressionText(expression);
        return htmlHelper.Label(inputName,htmlAttributes);
    }
}

我用“强类型”资源使用它们:

<%= Html.LabelFor(m=>m.NickName,UserStrings.NickName) %>

希望有帮助…

原文链接:https://www.f2er.com/aspnet/252889.html

猜你在找的asp.Net相关文章