前段时间发现ASP.NET MVC项目中出现“System.Web.Mvc.CompareAttribute”已过时:“The recommended alternative is to use the System.ComponentModel.DataAnnotations.CompareAttribute type, which has the same functionality as this type."的警告提示。原来是System.Web.Mvc.CompareAttribute已经是过时的特性了,提示信息建议我们使用System.ComponentModel.DataAnnotations.CompareAttribute来替换之前过时的特性。
原来的代码:
[Required(ErrorMessage = "请输入确认密码!")]
[System.Web.Mvc.Compare("NewAccountPassword", ErrorMessage = "两次输入的密码不一致!")]
public string ConfirmPassword { get; set; }
修改后的代码:
[Required(ErrorMessage = "请输入确认密码!")]
[System.ComponentModel.DataAnnotations.Compare("NewAccountPassword", ErrorMessage = "两次输入的密码不一致!")]
public string ConfirmPassword { get; set; }
另外这里附加一个微软MSDN关于System.Web.Mvc.CompareAttribute类过期的文档说明:http://msdn.microsoft.com/zh-cn/library/system.web.mvc.compareattribute(v=vs.118).aspx
作者:十有三
出处:https://shiyousan.com/post/635533385793540989
版权声明:本文采用知识共享许可协议:署名-相同方式共享 4.0 国际(CC BY-SA 4.0)。欢迎转载本文,转载请声明出处或保留此段声明。