On my main page, I:
MembershipUser thisUser = Membership.GetUser();
loggedInUserID = thisUser.ProviderUserKey.ToString();
thisUsergives me access to all fields in aspnet_Membership.
I want a new field isSubscribedfor each user. I can use the SQL query to get the value in order, but I want to know if there is a way to modify the membershipuser object so that it also retrieves this value, so it is available from:
thisUser.isSubscribed.ToString();
Thanks for any help!
source
share