如何验证 ASP.NET 动态数据站点中的特定字段?
我已经建立了一个动态数据 asp.net 网站,并且有脚手架。当网格视图中的行处于编辑模式时,我希望能够使用特定的正则表达式验证特定字段。我似乎无法从 Microsoft 找到有关如何执行此操作的最新文档。我可以去哪里了解如何实现这一目标?
I have built a dynamic data asp.net site and I have scaffolding on. I want to be able to validate specific fields using specific regular expressions when the rows in grid view are in edit mode. I cannot seem to find up to date documentation from Microsoft on how to do this. Where can I go to find out how to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您可以通过 JQuery 验证插件使用客户端或服务器端(远程)验证。
http://docs.jquery.com/Plugins/Validation。您也可以对动态添加的元素和表单中的单个元素执行此操作。
这是一些例子
http://www.zachhunter.com/2010/06/ jquery-validation-with-asp-net/
http://encosia.com/using-jquery-validation-with-asp-net-webforms/
I think you can use client side or server side (remote) validation with JQuery validation plugin.
http://docs.jquery.com/Plugins/Validation. You can do it for dynamically added elements and for individual elements in the form too.
Here are some examples
http://www.zachhunter.com/2010/06/jquery-validation-with-asp-net/
http://encosia.com/using-jquery-validation-with-asp-net-webforms/