How can I validate a textbox so that it does not allow me to enter more than 100 in asp.net?
Try doing that:
<%= Html.TextBox("nota" + cont, item.nota, new { @class = "form-control", type = "number", min = "0", max = "100", id = "txtNot...
asked on
02.05.2018 / 13:35