This is a general question. The login control from the Membership Provider asks for verification of the user's password but not of the email address. To add verifaction of the email address, do I need to build a custom login control?

Thanks in advance!

link|improve this question

feedback

4 Answers

up vote 0 down vote accepted

In order to validate the E-Mail address in addition to the username, yes you will need to build a custom validation control. You can then authenticate the user using your own function.

You can then handle the Authenticate event to run your own logic: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.login.authenticate.aspx

link|improve this answer
feedback

The default membership provider uses the user's username and password to validate. For what you want to do, without extending the default provider and modifying the login control you could make the user's email their username, or you could alternatively add an email field to the login control and add an email verification after the Membership validation by using GetUserNameByEmail and setting RequiresUniqueEmail to TRUE.

link|improve this answer
feedback

Are you trying to verify if an email address was entered, in valid format or if it really exists?

link|improve this answer
I am trying to verify that the user has correctly typed their email address. – Susan Aug 10 '11 at 12:49
feedback

If you simply want to verify that the email does not exist then you can update you web.config membership section to state that emails need to be unique.

requiresUniqueEmail="false"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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