Please Suggest me to how to add number of Duration is HH:MM Format.
Here is my model.
<div class="form-group">
@Html.LabelFor(model => model.Duration, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-4">
@Html.EditorFor(model => model.Duration, new { htmlAttributes = new { @class = "form-control", onkeypress = "javascript:return ValidateNmber(this,event);", Placeholder = "HH:MM" } })
@Html.ValidationMessageFor(model => model.Duration, "", new { @class = "text-danger" })
</div>
</div>
So please Suggest ASAP.