需要帮助:编辑和编号asp.net

时间:2017-03-17 12:40:10

标签: asp.net-mvc view numbers editor

我在asp.net中有一个编辑器字段,它只需要在1和列表大小之间进行整数输入。我把它作为代码

  

@ Html.Editor(“Prioriteit”+ item,new {htmlAttributes = new {@type =“number”,min =“0”,step =“1”,value =“0”}})

这不是列表的最大值,我知道这一点。但是,当我打开页面时,我仍然可以添加文本。 View with text in editor 有人可以帮帮我吗? 提前致谢 更改代码是为了将某人链接到另一个问题 代码

        @Html.TextBox("Prioriteit" + item,null, new { htmlAttributes = new { @type = "number", min = "0",step = "1", value = "0" } })

still the same `

2 个答案:

答案 0 :(得分:0)

您还可以执行以下操作:

<input type="number" min="0" step="1" value="0" name="Prioriteit@item" />

答案 1 :(得分:0)

试试这个:

@Html.TextBox("Prioriteit" + item, "0", new { @type="number", min = "0", step = "1" })