Issue with username validation message in asp.net identity

Viewed 6561

I am using new membership system asp.net identity in my project. I want to use Email address as an Username and yes i have looked these questions already:

Configure Microsoft.AspNet.Identity to allow email address as username

ASP.NET identity use email instead of user name

and i know how to use email as a Username.But i have another issue, the Validation error message:

Name xxxxxxxxx@xxxx.com is already taken.

this message comes when user try to register with existing email address.So instead of this error message i want to give error message some like:

User with the given email address already exist.

So how can i do this in Asp.Net identity ??

2 Answers
Related