Watch this exampel on YouTube
in .css add the following
.width200{
width: 200px;
}
in view replace
@Html.EditorFor(model => model.FirstName, new { htmlAttributes = new { @class = "form-control" } })
with
@Html.TextBoxFor(model => model.FirstName, new { htmlAttributes = new { @class = "width200" } })
No comments:
Post a Comment