I have to create a razor text box where users should allow to input only hindi digits {०,१,२,३,...९}. How can I do that?
@Html.EditorFor(model => model.Region, new { htmlAttributes = new { @class = "form-control", @type="number",@min="0",@max="8" } })