What would be the best way to implement a validation in ASP.NET MVC 3 when it is to be triggered only if the user changed the value. It should not trigger if the current value is invalid but user did not change it. For example
public class SomeViewModel
{
[Required]
[Range(10, 20)]
public int? SomeProperty { get; set; }
public int? AnotherProperty { get; set; }
}
If the user inputs value outside of range 10 and 20, the default ASP.NET MVC validations trigger both on server and client (unobtrusive). However, if the current value of SomeProperty is invalid (say 25) but user only changes the value of AnotherProperty, the validation for SomeProperty still gets triggered both on server and client. How would we implement a validation that allows existing invalid value for a given property only if it is not changed by the user. So in this case if SomeProperty has a value of 25 (which is invalid) and the user only changes the value of AnotherProperty, the validation should not trigger. If user changes the value of SomeProperty to anything other than 25 (current value), it should be validated and invalid values should not be allowed.