的顯示驗證消息想這是我的看法......MVC - 到位標籤
<div class="control-group">
@Html.LabelFor(model => model.Title, new { @class = "control-label" })
@Html.ValidationMessageFor(model => model.Title, null, new { @class = "help-inline" })
<div class="controls">
@Html.EditorFor(model => model.Title)
</div>
</div>
在錯誤的情況下,我們如何隱藏代替Label
的Label
和顯示validation message
?
請在此建議...
如果OP正在使用客戶端驗證,這將不起作用? – James
不,它不會工作。但它很容易實現。您必須連接到客戶端驗證並在客戶端隱藏相應的標籤。 –
是的,值得更新的答案包括,因爲我認爲現在大多數人會使用客戶端。 – James