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?
Asked
Active
Viewed 79 times
1 Answers
0
Try:
Membership.UpdateUser(user);
... That should force an update of the user after you set the flag.

Quintin Robinson
- 81,193
- 14
- 123
- 132
-
ah crap, at least second brain fart tonight. time for sleep. THANKS. – zsharp Feb 28 '09 at 06:35
-
lol don't feel bad, I should be asleep right now, glad it worked for you, goodnight! – Quintin Robinson Feb 28 '09 at 06:36