如何在MVC中使用HTML.Textbox的这个重载。
@Html.TextBox(string name, object value, string format, object htmlattributes)
名称代表texbox的名称
值表示文本框的值,即文本框中的文本
htmlattributes 代表HTML属性
格式(第三个参数)代表什么?如何使用它?请举例。
感谢你。这是一个简单的基本问题。我已经搜索 Google了解此问题,但没有得到任何答案。
答案 0 :(得分:0)
name
代表texbox的名称
Value
代表文本框的值,即文本框中的文字
htmlAttributes 您可以指定
id for the control and css classes
字符串格式您可以指定此"{0:d MMM yyyy}"
例如:
@Html.TextBoxFor("txtDate","somedate","{0:d MMM yyyy}", new { @class="input-large" })