我正在使用 MVC 应用程序。
我的代码如下:-
if(//there are errors then display validation summary)
{
<div class="error">@Html.ValidationSummary(true, "There was an error!")<div>
}
@using (Html.BeginForm("FoundSimilarAccounts", "Account", FormMethod.Post, new { id = "contactform" }))
{
}
我只想知道 if 条件是什么。我只想显示当他们是错误或者他们是验证摘要中的某些内容时。
谢谢