覆盖asp.net ValidationSummary控件错误消息
问题描述:
如何覆盖ASP.NET Web窗体项目中ValidationSummary控件显示的错误消息?
How can I override the error message displayed by the ValidationSummary control in an ASP.NET web forms project?
我不想显示验证组中每个无效控件的错误,而是要显示一条消息,例如表单无效".
Rather than displaying an error for each invalid control within the validation group, I want to display a single message e.g. "Invalid form".
答
<%: Html.ValidationSummary(true, "Invalid form") %>