我创建了一个简单的应用程序,它在ASP.NET上执行基本的CRUD操作。功能很棒,但我想编辑视觉效果。例如,int值的文本框是这样的:
我希望它是没有箭头的普通文本框。我还想要更大的文本框来获取地址值。 如何为此编辑.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>
感谢。
答案 0 :(得分:3)
@Html.TextBoxFor(model => model.Adres)