views:

36

answers:

1

When a user registers, I set the IsApproved value to false until later. After "approval" I set the users .IsApproved=true. However, the change does not get committed to db. It does show change in debugging. Any ideas?

A: 

Try:

Membership.UpdateUser(user);

... That should force an update of the user after you set the flag.

MSDN Info

Quintin Robinson
ah crap, at least second brain fart tonight. time for sleep. THANKS.
zsharp
lol don't feel bad, I should be asleep right now, glad it worked for you, goodnight!
Quintin Robinson