Add out-of-order HTML attributes to MVC tag helper sample

- these are rendered in the same, non-alphabetic order
- demonstrates aspnet/Razor#225 does not affect HTML attributes
This commit is contained in:
Doug Bunting 2014-11-30 16:07:28 -08:00
parent b666cce854
commit 69f63db7bf
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
@* - should helper remove the <div/> if list isn't generated? *@
@* - (Html.ValidationSummary returns empty string despite non-empty message parameter) *@
@* Acceptable values are: "None", "ModelOnly" and "All" *@
<div validation-summary="ModelOnly">
<div validation-summary="All" style="color:blue" id="validation_day" class="form-group">
<span style="color:red">This is my message</span>
</div>