问题描述
如何在 asp.net WEBFORM 业务对象类中使用此约定?
MVC 示例
使用 System.ComponenModel.DataAnnotation;公开课客户{[必需的][字符串长度(5,20)]公共字符串名字{获取;放;}[必需的][字符串长度(5,20)]公共字符串姓氏 { 获取;放;}}
我想在我的 asp.net webform 业务对象类中使用此数据注释进行客户端验证和服务器验证.
不幸的是,WebForms 没有像 MVC 这样的数据注释的本机支持.
但您可以使用自定义决策:
系统组件模型asp.net 网络表单的数据注释
使用数据注释构建 ASP.NET 验证器p>
ASP.NET: WebForms Validation with数据注释
How can I use this convention in an asp.net WEBFORM Business object class?
Example In MVC
using System.ComponenModel.DataAnnotation;
public class Customer
{
[Required]
[StringLength(5,20)]
public string FirstName { get; set;}
[Required]
[StringLength(5,20)]
public string LastName { get; set;}
}
I want to use this data annotation in my asp.net webform businessobject class for client validation and server validation.
Unfortunately WebForms doesn't have native support of Data Annotations like MVC.
But you can use custom decisions:
system componentmodel dataannotations for asp.net webforms
Building an ASP.NET Validator Using Data Annotations
ASP.NET: WebForms Validation with Data Annotations
这篇关于是否可以在 ASP.NET WEBFORM 业务对象类中对 MVC 使用数据注释?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!