I need to provide a custom validation message for when user input invalidates the step = ".01"
Currently, the validation message is the default "Please enter a multiple of 0.01". How can I change this?
@Html.TextBoxFor(x => x.CostChanges[i].MyVariable, new { @class = "form-control", step = ".01" })
<span asp-validation-for="@Model.CostChanges[i].MyVariable" class="text-danger"></span>
