我正在尝试使用数据注释在MVC中使用客户端验证。 不生成数据val属性,客户端验证不起作用。
我的方法是:
public partial class User : BaseEntity
{
public User()
{
this.UserRoles = new List<UserRole>();
}
public int UserId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
我使用上面的类作为部分类扩展:
[MetadataType(typeof(UserMetaData))]
public partial class User
{ }
public class UserMetaData
{
[Required]
public string FirstName { get; set; }
[Required]
public string LastName { get; set; }
}
包括观点:
@using (Html.BeginForm("Add", "user", FormMethod.Post, new { @class = "form-horizontal"}))
{
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
@Html.Partial("_UserDetails", Model)
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="form-group">
<div class="col-md-12 col-sm-12 col-xs-12 pull-left">
<input type="submit" class="btn btn-primary btn_box" value="Add" id="formSubmit" />
</div>
</div>
</div>
}
_UserDetails部分视图:
<div class="form-group">
<div class="col-md-4 col-sm-12 col-xs-12">@Html.Label("First Name :", new { @class = "col-sm-12 control-label text-label" })</div>
<div class="col-md-8 col-sm-12 col-xs-12">@Html.TextBoxFor(m => m.User.FirstName, new { @class = "form-control input-fild", @id = "firstname" })</div>
</div>
<div class="form-group">
<div class="col-md-4 col-sm-12 col-xs-12">@Html.Label("Last Name :", new { @class = "col-sm-12 control-label text-label" })</div>
<div class="col-md-8 col-sm-12 col-xs-12">@Html.TextBoxFor(m => m.User.LastName, new { @class = "form-control input-fild", @id = "lastname" })</div>
</div>
当我运行应用程序并查看查看源&#34;数据值&#34;在控件上不生成属性,因为它用于在正常[必需]属性中生成。
我错过了什么吗? 谢谢。
答案 0 :(得分:4)
您是否在Web.config中启用了客户端验证?
<appSettings>
<add key="ClientValidationEnabled" value="true" />
</appSettings>
答案 1 :(得分:0)
您能否看一下为此问题提供的解决方案。 MVC 4 client side validation not working
此blog
中还描述了另一个