Watch this example on YouTube
Replace
@Html.EditorFor(model => model.FirstName, new { htmlAttributes = new { @class = "form-control" } })
With
@Html.TextBoxFor(model => model.FirstName, new { @class = "form-control" , @Value="NO NAME" })
@Html.TextBoxFor(a => a.ProductStatus, new {@class = "form-control", @Value="Ready", @readonly =true})
ReplyDeleteDefault value doesnt shown on google chrome and edge? What is problem