仅从类名获取 html 帮助程序扩展中不显眼的验证属性

Get unobtrusive validation attribute in html helper extensions from just a class name

提问人:HashCoder 提问时间:3/2/2012 更新时间:3/2/2012 访问量:419

问:

是否可以仅从类名中获取 html 帮助程序扩展方法中的不显眼的验证属性。

我有一个具有数据注释的类。

public class UserDetails
{
    [Required]
    [Display(Name = "First name")]
    public string Firstname{ get; set; }

    [Required]
    [Display(Name = "Second Name")]
    public string SecondName{ get; set; }      
}

我的目标是仅使用“UserDetails”类名即可获得所有不显眼的验证属性。

有什么建议吗?

asp.net-mvc-3 数据注释 unobtrusive-validation

评论


答: 暂无答案