How can I get an ASP.NET MemberhipUser by specifying an email address, none of the overloads Membership.GetUser()will get an email address.
Membership.GetUser()
string thisUser= Membership.GetUserNameByEmail("email")
gotta do the trick. Then you can use
MembershipUser mu = Membership.GetUser(thisUser);
There is a Memberhip.GetUserNameByEmail method . Hope this is what you are looking for.
Use the GetUserNameByEmail method. Here is an example: MSDN Help