Wednesday 30 November 2016

MVC - Set width of TextBox

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