1
I need to display a message when the blocked user tries to log in to Membership... I set the locked user with the Isapproved = false property; at the time of registration
MembershipUser lockUser = Membership.GetUser(txtEmail.Text);
lockUser.IsApproved = false;
Membership.UpdateUser(lockUser);
Is there any way?
How are you defining a user locked in the comic?
– CesarMiguel
If you can explain better the problem you have in particular and, if possible, show code you have done where this problem is. Your question is too broad, see Help Center How to Ask.
– Jorge B.
I rephrased the question, I now need to display a message if the user has not unlocked the access that was sent by email.
– Gerson