Hello!
How can I get rid off this "helping saved data"?
That's the code for the EditorFor
- <div class="form-group">
- @Html.LabelFor(model => model.ValoareBid, "Valoarea ofertei:",htmlAttributes: new { @class = "control-label col-md-2" })
- <div class="col-md-10">
- @Html.EditorFor(model => model.ValoareBid, new { htmlAttributes = new { @class = "form-control" } })
- @Html.ValidationMessageFor(model => model.ValoareBid, "", new { @class = "text-danger" })
- </div>
- </div>