我的模型中有以下数据注释
[StringLength(6, ErrorMessage = "MyMsg")]
public string MyField { get; set; }
但在我看来,我收到错误“NaN”
该字段仅接受0作为值。
为什么?
[剃刀]
@Html.TextBoxFor(model => model.MyField)
@Html.ValidationMessageFor(model => model.MyField)
答案 0 :(得分:0)
使用:@Html.EditorFor(model => model.MyField)
代替您发布的内容。