使用 MVC 库在 ASP.NET Web 窗体中进行基于属性的验证?
ASP.NET Webforms 中有没有一种方法可以适应基于属性的验证。如果是这样,任何已证明这一点的网址。我不是在寻找开源项目。 就像可以在Web Forms中使用MVC Routing一样,验证框架也可以使用吗?
Is there a way in ASP.NET Webforms to accommodate attribute based validation. If so any urls where this has been demonstrated. I am not looking for open source projects.
Just as you can use MVC Routing in Web Forms, can the validation framework be used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
路由对于整个 ASP.NET 来说很常见,因此 - 您可以在 Web 表单中轻松使用它 也是。
“基于属性的验证”基于所谓的 DataAnnotations。它们甚至不是 ASP.NET 特有的,而是整个 .NET 通用的。 Mvc 框架只是使用它们等。
您可能会找到 本教程有用。我不确定我是否会使用这种方法 - 但这当然是可能的。
Routing is common for whole asp.net, therefore - you can easily use it in webforms too.
'Attribute based validation' is based on so called DataAnnotations. They aren't even asp.net specific, but common for whole .net. Mvc framework just uses them etc.
You might find this tutorial useful. I'm not sure i would use such an approach - but it's certainly possible.
看看这个。一个非常好的ASP.Net Webforms 的验证框架。
http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=477
(来源:spaanjaars.com)
Check this out. A really good Validation Framework for ASP.Net Webforms.
http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=477
(source: spaanjaars.com)
另请查看 Microsoft 企业库验证应用程序块。与 DataAnnotations 相比,它具有更大的功能集、Visual Studio 集成、更多的扩展可能性,并且未来的版本将能够读取 DataAnnotations 属性,但它也有更陡峭的学习曲线。由于其复杂性,它并不总是适合小型项目。
Also check out the Microsoft Enterprise Library Validation Application Block. Compared to DataAnnotations, it has a much larger feature set, visual studio integration, more possibilities to be extended and future versions will be able to read DataAnnotations attributes, but it also has a much steeper learning curve. Because of its complexity it isn't always a good fit for small projects.