I try to get user info and corresponding settings, and try to get "UserPosition" property, but in code there is no such property.
You could use the GetValue<T> (or GetStringValue in this case) method for getting the UserPosition property value.
GetValue<T>
GetStringValue
UserPosition
var user = MembershipContext.AuthenticatedUser; var userPosition = user.GetValue("UserPosition", string.Empty);
Please, sign in to be able to submit a new answer.