The ".input-validation-error" style isn't being applied to textboxes (the style is not being over-ruled) but the error messages are being displayed for the textboxes.

However, that style is being applied to the drop down lists on the same page.

The page is using server-side validation only.

I'm new to MVC so I don't even know where to begin on this.

<td class="editor-field">
<%= Html.EditorFor(model => model.DomainEntity.Member.City) %>
<%= Html.ValidationMessageFor(model => model.DomainEntity.Member.City) %>
</td>

[DisplayName("City")]
[Required(ErrorMessage = "City is required")]
[StringLength(30, ErrorMessage = "City must be under 30 characters.")]
[HtmlProperties(CssClass = "med", MaxLength = 30)]
public virtual string City { get; set; }
link|improve this question
2  
Please show your View code, and Model. – Shark Feb 9 at 14:00
Start by moving things to client side validation whenever and wherever possible. It will depend on what/how you are validating things. – Brian Feb 9 at 14:02
1  
@Brian MVC model validation, when done correctly, works both client and server side. And you should never move server side validation to client side. Copy, don't move. – jrummell Feb 9 at 14:04
@Brian I agree it should have client side validation, but I didn't make that decision. – user1197834 Feb 9 at 14:13
I didn't say move server side validation to the client. MVC certainly accommodates client side validation but if you don't use it then it isn't going to validate on the client side. It is always a good practice to validate things on the client side before letting any request get to your servers. – Brian Feb 9 at 14:14
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.