Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to check to see if the new users email already exists in the database. The email passes all the normal validation but what if I want to trigger a special validation from the controller if the email already exists after checking it against the database?

share|improve this question

2 Answers

up vote 13 down vote accepted

In controller: ModelState.AddModelError("ErrorEmail", "Error Message");

In View: @Html.ValidationMessage("ErrorEmail")

Hope this helps

share|improve this answer
PERFECT!!! thx! :) – EdenMachine Apr 3 '11 at 2:27

I think what you are looking for is the RemoteAttribute.

This is a ValidationAttribute for remote validation. It works like the other validation attributes by adding model errors to your modelstate dictionary.

Check out these articles on using the RemoteAttribute:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.