I have two fields in my view model
public decimal Rate { get; set; }
public decimal GrossRate { get; set; }
Gross rate should be greater than or equal to Rate. Validate that whether gross rate is equal or greater than rate if gross rate enter is less it will display error message. Is there is something possible that I can validate from view model. I dont want to use if statement on postback.