我收到以下错误:
Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: required
我不知道为什么,我已经阅读了一些关于自定义验证和ninject的内容,但我认为不是这样。
我正在创建一个自定义帐户管理系统,管理员可以在其中创建/编辑用户。我正在使用ASP.NET Membership, Role, Profile
。当您创建一个勾选Internet
的新应用程序时,它会创建所有帐户内容。我尝试做的只是重复使用RegisterModel
AccountManagement
中提供的Area
。但随后错误开始出现,我没有任何自定义验证提供程序或任何东西。错误/异常也会出现在Account
Views
中(由MVC模板创建的那些)。
错误发生在视图的这一行:
<div class="editor-label">
@Html.LabelFor(model => model.User.UserName)
</div>
<div class="editor-field">
@Html.TextBoxFor(model => model.User.UserName) <!-- THIS LINE -->
@Html.ValidationMessageFor(model => model.User.UserName)
</div>
我的模型是一个带有属性的ViewModel
类:
public RegisterModel User {get;set;}
除了重新使用RegisterModel
之外,我写了这整个网站没有任何问题。从那时起,我尝试创建一个名为Model
的全新NewUserModel
,并仅在Area
中引用该内容,但无效。
我使用DependencyResolver
将Ninject
用作我的IoC / DI。我无法想象这是一个问题......
型号:
namespace MyApplication.Areas.AccountManagement.Models
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
public class NewUserModel
{
[Required]
[Display(Name = "User name")]
public string UserName { get; set; }
[Required]
[Display(Name = "First Name")]
public string FirstName { get; set; }
[Required]
[Display(Name = "Last Name")]
public string LastName { get; set; }
[Required, RegularExpression(@"[0-9]{8}", ErrorMessage = "Please enter in an 8 digit Intel Worldwide Id")]
[Display(Name = "WWID")]
public string WWID { get; set; }
[Required]
[DataType(DataType.EmailAddress)]
[Display(Name = "Email address")]
public string Email { get; set; }
[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
[DataType(DataType.Password)]
[Display(Name = "Confirm password")]
[System.Web.Mvc.Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
}
}
答案 0 :(得分:0)
如果对属性应用了多个验证规则,通常会出现此类问题。 你能检查以下内容:
答案 1 :(得分:0)
这个错误是因为Ninject.MVC3从nuget添加到项目中。
这与Ninject如何注入验证或我在网上找到的最佳答案有关!
我完全从我的应用程序中删除了Ninject,然后重新添加了Ninject(正常的),一切正常!!