Denis Alex

Denis Alex

  • NA
  • 63
  • 2.4k

How to get rid off "history of saved data"

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

Answers (1)