您的位置:首页 > 编程语言 > ASP

Part 86 - ValidationSummary in asp.net mvc

2016-11-13 12:19 1271 查看
In this video, we will discuss displaying all validation errors at one place using validation summary html helper.
A red asterisk (start) should be displayed next to every field that has failed the validation. The output should be as shown below.



We will be working with the example that we discussed in Part
85. Please watch Part 85, before proceeding.

First of all, the validation error messages should be displayed in red color. On the "Edit" view, include a reference to Site.css style sheet.
<link href="~/Content/Site.css" rel="stylesheet" type="text/css"
/>

In site.css there are 3 CSS classes that control the display of validation error messages. Adjust the styles of these classes according to your needs.
field-validation-error
input.input-validation-error
validation-summary-errors

To display all errors at one place, use ValidationSummary() HTML helper. 
@Html.ValidationSummary(false, "Please fix the following errors and then submit the form")

To display an asterisk, next to the field that has failed validation, modfiy ValidationMessageFor() html helper as shown below.
@Html.ValidationMessageFor(model => model.Name, "*")

At this point, next to the field that has failed the validation message, a star symbol will be displayed instead of the detailed error message. All the detailed error messages will be displayed using validation
summary. 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: