只是DisplayName的文本

时间:2011-07-06 05:48:32

标签: asp.net-mvc-2 metadata html-helper

如何在我的视图中设置模型属性的DisplayName属性值,而不是使用Html.LabelFor()Html.LabelFor()并不适合我,因为它让我<label for=""></label>破坏了我的网页布局。 所以这里是Model的属性样本:

[DisplayName("House number")]
        [Required(ErrorMessage = "You must specify house number")]
        [Range(1, 9999, ErrorMessage = "You have specify a wrong house number")]
        public UInt32? buildingNumber
        {
            get { return _d.buildingNumber; }
            set { _d.buildingNumber = value; }
        }

先谢谢你,伙计们!

3 个答案:

答案 0 :(得分:3)

这应该从元数据中获取显示名称:

@ModelMetadata.FromLambdaExpression(m => m.buildingNumber, ViewData).DisplayName

编辑:

我认为您仍然可以使用MVC2语句,只需更改@:

即可

&lt;%:ModelMetadata.FromLambdaExpression(m =&gt; m.buildingNumber,ViewData).DisplayName%&gt;

答案 1 :(得分:3)

http://weblogs.asp.net/imranbaloch/archive/2010/07/03/asp-net-mvc-labelfor-helper-with-htmlattributes.aspx大量借用,我创建了一个扩展方法来执行此操作。它输出带有始终安全的量程标签。您也可以修改它以完全省略span标记(消除两个重载,因为在这种情况下您永远不能获取属性)。

使用此内容创建一个类,确保您的页面正在导入该类的命名空间,然后在Html.DisplayNameFor(x => x.Name)

视图中使用它
public static class DisplayNameForHelper
{
    public static MvcHtmlString DisplayNameFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression)
    {
        return DisplayNameFor(html, expression, new RouteValueDictionary());
    }

    public static MvcHtmlString DisplayNameFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, object htmlAttributes)
    {
        return DisplayNameFor(html, expression, new RouteValueDictionary(htmlAttributes));
    }

    public static MvcHtmlString DisplayNameFor<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("span");
        tag.MergeAttributes(htmlAttributes);
        tag.SetInnerText(labelText);
        return MvcHtmlString.Create(tag.ToString(TagRenderMode.Normal));

    }
}

答案 2 :(得分:2)

您可以从元数据中获取它:

<%
    var displayName = ModelMetadata
        .FromLambdaExpression(x => x.buildingNumber, Html.ViewData)
        .DisplayName;
%>

<%= displayName %>