i do have 2 fields in the front end and i do perform model station validation
[Required]
Public decimal? NetPay { get; set; }
[Required]
Public decimal? Tax { get; set; }
if i type some string value in one of the fields in the front end the value on the actionExecuting is always null. Why is that happening? and how to validate it in the model for numeric values?