在MVC的世界我有这个视图模型…
public class Myviewmodel{ [required] public string FirstName{ get; set; } }
…在我看来这样的事情…
<%= Html.ValidationSummary("Please correct the errors and try again.") %> <%= Html.TextBox("FirstName") %> <%= Html.ValidationMessage("FirstName","*") %>
我的问题:如果我提交此表单而不提供名称,我会收到以下消息“需要的名字字段”
好.所以,我去把我的财产改成…
[DisplayName("First Name")] [required] public string FirstName{ get; set; }
现在得到“名字字段是必需的”
到目前为止都不错
所以现在我想要错误信息显示“名字Blah Blah”.如何覆盖默认消息以显示DisplayName“Blah Blah”,wihtout注释所有的属性,类似于
[required(ErrorMessage = "First Name Blah Blah")]
干杯,
ETFairfax