c# - MembershipUser class - Comments method doesn't work? -


i'm unable set comments property of membershipuser type objects.

e.g.

membershipuser mu = membership.getuser(username);                         mu.comment = "somecomments"; 

i'd expect set comment property of mu object "somecomments" , write changes database.

later, following check:

mu.comment == "somecomments";  

comment property set null. there anythign need change in web.config or...?

thank you

call membership.updateuser(mu)


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -