如何在ASP.NET MVC5中编辑.cshtml文件

时间:2014-07-18 13:38:31

标签: asp.net asp.net-mvc

我创建了一个简单的应用程序,它在ASP.NET上执行基本的CRUD操作。功能很棒,但我想编辑视觉效果。例如,int值的文本框是这样的: enter image description here

我希望它是没有箭头的普通文本框。我还想要更大的文本框来获取地址值。 如何为此编辑.cshtml文件?地址的当前代码如下所示:

<div class="form-group">
  @Html.LabelFor(model => model.Adres, new { @class = "control-label col-md-2" })
   <div class="col-md-10">
     @Html.EditorFor(model => model.Adres)
      @Html.ValidationMessageFor(model => model.Adres)
</div></div>

感谢。

1 个答案:

答案 0 :(得分:3)

 @Html.TextBoxFor(model => model.Adres)