I am using this line to represent my models validation message:
@Html.ValidationMessageFor(Model => Model.Email, "")
It workds in the manner that when the attribute isn't valid, it's set to the proper error message. I want to extend this so it first shows a default message, then a success message if the attribute "Email" is valid.
So..
Default: Please enter your email here. !Valid: The email is not valid (working) Valid: Thanks, you'll receive an email after completing the registration.
Is there any way to add default & successful messages?