.NET MVC - 如何将类分配给Html.LabelFor?

时间:2010-02-19 05:25:22

标签: asp.net-mvc

此代码

<%= Html.LabelFor(model => model.Name) %>

产生这个

<label for="Name">Name</label>

但我想要这个

<label for="Name" class="myLabel">Name</label>

你是怎么做到的?

3 个答案:

答案 0 :(得分:129)

可悲的是,在MVC 3中,Html.LabelFor()方法没有允许直接类声明的方法签名。但是,MVC 4添加了2个接受htmlAttributes匿名对象的重载。

与所有HtmlHelpers一样,重要的是要记住C#编译器将class视为保留字。

因此,如果您在class属性之前使用@,它可以解决问题,即:

@Html.LabelFor(model => model.PhysicalPostcode, new { @class= "SmallInput" })

@符号使“class”成为传递的文字。

答案 1 :(得分:65)

LabelFor的重载:

public static class NewLabelExtensions
{
    public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, object htmlAttributes)
    {
        return LabelFor(html, expression, new RouteValueDictionary(htmlAttributes));
    }
    public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, IDictionary<string, object> htmlAttributes)
    {
        ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, html.ViewData);
        string htmlFieldName = ExpressionHelper.GetExpressionText(expression);
        string labelText = metadata.DisplayName ?? metadata.PropertyName ?? htmlFieldName.Split('.').Last();
        if (String.IsNullOrEmpty(labelText))
        {
            return MvcHtmlString.Empty;
        }

        TagBuilder tag = new TagBuilder("label");
        tag.MergeAttributes(htmlAttributes);
        tag.Attributes.Add("for", html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldId(htmlFieldName));
        tag.SetInnerText(labelText);
        return MvcHtmlString.Create(tag.ToString(TagRenderMode.Normal));
    }
}

http://weblogs.asp.net/imranbaloch/archive/2010/07/03/asp-net-mvc-labelfor-helper-with-htmlattributes.aspx

答案 2 :(得分:8)

好的,查看此方法的源代码(System.Web.Mvc.Html.LabelExtensions.cs),似乎没有办法在ASP.NET MVC 2中使用HtmlHelper执行此操作。我认为您最好的选择是创建自己的HtmlHelper或为此特定标签执行以下操作:

<label for="Name" class="myLabel"><%= Model.Name %></label>