显示名称的元数据不会显示在视图 [英] DisplayName metadata does not show up on view

查看:103
本文介绍了显示名称的元数据不会显示在视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我将如何显示在考虑下面的模型我认为正确的DsiplayName。

How will I show the correct DsiplayName on my view considering the following model.

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<Project.Models.RegisterViewModel>" %>

<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
    <% using (Html.BeginForm())
       {%>
    <table>
        <tr>
            <td class="label">
                <%: Html.LabelFor(model => model.User.UserPrimaryEmail)%>
            </td>
            <td class="field">
                <%: Html.TextBoxFor(model => model.User.UserPrimaryEmail)%>
            </td>
            <td class="field-error">
                <div class="field-error-msg">
                    <%: Html.ValidationMessageFor(model => model.User.UserPrimaryEmail)%>
                </div>
            </td>
        </tr>
 </table>
</asp:Content>

public class RegisterViewModel
{
    public User User { get; set; }
}


[MetadataType(typeof(UserMetaData))]
public partial class User : UserBase
{
 //Inherits from Generated Class UserBase
 //to set default values here for the constructor

    // Not used except as a source of metadata
    public class UserMetaData
    {

        [Required]
        [DisplayName("Email Login")]
        [DataType(DataType.EmailAddress)]
        [Email(ErrorMessage = "Invalid Email")]
        public string UserPrimaryEmail { get; set; }


    }

}

形式不显示邮箱登录,而是UserPrimaryEmail

The form does not display "Email Login" but "UserPrimaryEmail"

推荐答案

您的看法是强类型为Project.Models.RegisterViewModel,但是您要添加的数据注释用户对象。

You View is strongly typed to Project.Models.RegisterViewModel, however you are adding your Data Annotations to the User Object.

一般来说,你将有:

public class RegisterViewModel
{
    [Required]
    [DisplayName("Email Login")]
    [DataType(DataType.EmailAddress)]
    [Email(ErrorMessage = "Invalid Email")]
    public String Email { get; set; }

    .....
    other properties
}

这篇关于显示名称的元数据不会显示在视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆