如何使用比较验证器
请告诉我如何在 ASP.NET MVC2 中应用密码比较验证器和确认密码。 请给我一些好的链接或任何示例。
谢谢
Please tell me how to apply compare validater for password and confirm password in ASP.NET MVC2.
Please give me some good link or any sample.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该示例直接取自 mvc2 模板和 MvcMusicStore 示例(在 codeplex 上)。
此示例假设您使用强类型视图。
This sample is taken straight from the mvc2 template and the MvcMusicStore sample (on codeplex).
This sample assumes you are using strongly typed views.
比较验证器将接受应设置为您的确认密码控件的
ControlToValidate
属性,应设置为您的密码控件的ControlToCompare
属性。DataType
属性还可以设置比较数据类型,您可以将其设置为 true。Compare validator will accept
ControlToValidate
property that should be set to your confirm password control,ControlToCompare
property that should be set to your password control.DataType
property is also there to set the comparison datatype, and you can set it to true.