我的模型:通空字符串可爲空整型屬性
[DisplayName("Height")]
public int? Height { get; set; }
[DisplayName("Width")]
public int? Width { get; set; }
查看:
<%= Html.TextBoxFor(x => x.Width) %>
<%= Html.TextBoxFor(x => x.Height) %>
操作:
if (ModelState.IsValid)
SaveSettings(model);
當空字符串從視圖中通過,ModelState中是假的,但是我需要空字符串作爲有效輸入,這樣的空值纔會通過nd ModelState.IsValid將爲true。我可以添加到視圖添加這個邏輯?或者也許有其他解決方案?非常感謝您的幫助。