J
Jeff
ASP.NET 2.0
The code below is triggered by OnCreatedUser from the CreateUserWizard in my
website. The problem is that user.IsApproved = false; don't set
user.IsApproved to false. After I've created a user I can check in "ASP.NET
Configration" that this user is active. I want the IsApproved to be false
and send an email to the user so he can confirm his identity....
Any suggestions why user.IsApproved = false; is not working????
protected void CreatedUser(object sender, EventArgs e)
{
MembershipUser user =
Membership.GetUser(CreateUserWizard1.UserName);
user.IsApproved = false;
}
Jeff
The code below is triggered by OnCreatedUser from the CreateUserWizard in my
website. The problem is that user.IsApproved = false; don't set
user.IsApproved to false. After I've created a user I can check in "ASP.NET
Configration" that this user is active. I want the IsApproved to be false
and send an email to the user so he can confirm his identity....
Any suggestions why user.IsApproved = false; is not working????
protected void CreatedUser(object sender, EventArgs e)
{
MembershipUser user =
Membership.GetUser(CreateUserWizard1.UserName);
user.IsApproved = false;
}
Jeff