Extension RangeAttribute不起作用

时间:2016-09-05 08:08:25

标签: c# asp.net-mvc attributes

我有以下属性:

[ExRequired("PleaseInsert", "LyingPulse")]
[ExRange(40, 150)]
[LayoutAttributes]
public int LyingPulse { get; set; }
扩展范围类中的

public class ExRange : RangeAttribute
{
    public ExRange(int minLen, int MaxLen) : base(minLen,MaxLen)
    {          
        ErrorMessage = "testRange";
    }


}
它没有用?问题是什么?

0 个答案:

没有答案