CreateUserWizard 的服务器端验证
我正在使用内置的 asp.net 会员框架。我创建了一个注册页面,并使用一些自定义验证器设置了客户端验证,通过 jQuery AJAX 验证到 Web 服务,并且客户端验证工作正常。我有两个问题:
即使客户端验证失败,继续按钮仍然有效。如何禁用它?
我不想依赖客户端验证。如何在 CreateUserWizard 中实现服务器端验证?你能给我一些具体的教程吗?我没找到。
谢谢你!
I am using the built-in asp.net membership framework. I created a registration page and set up client-side validation with some custom validators, validating through jQuery AJAX to a web service and the client-side validation works ok. I have two issues:
Even when the client-side validation fails, the continue button still works. How do I disable it?
I don't want to count on client-side validation. How do I go about implementing server-side validation in the CreateUserWizard? Can you point me at some specific tutorial? I failed to find one.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用事件
CreatingUser
。标记:
代码:
Use event
CreatingUser
.Markup:
Code:
请查看以下教程以获取有关 CreateUserWizard 的完整信息:
自定义 CreateUserWizard 控件。
另一个有用的教程可以在这里找到: 自定义 ASP.NET 的 CreateUserWizard 控件以显示一组固定的安全问题
Please look on the following tutorials for full information about the CreateUserWizard:
Customizing the CreateUserWizard Control.
Another helpful tutorial can be found here: Customizing ASP.NET's CreateUserWizard Control To Display a Fixed Set of Security Questions