ASP.NET MVC 出现“System.Web.Mvc.CompareAttribute”已过时

前段时间发现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




原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/98378.html

(0)
上一篇 2021年8月21日 00:12
下一篇 2021年8月21日 00:12

相关推荐

发表回复

登录后才能评论