I am using datannotations and the server/client side validation stuff in ASP.NET MVC 2. Everything works fine if a class has properties such as:
[Required(ErrorMessage = "whatever")]
String blah;
but I have no idea how to make this:
[Range(13134, 42352345, ErrorMessage = "outside of range")]
List<int> blah;
where I want the int to be in that range.