User61956409 posted
Hi rkrex,
You can refer to the following code snippet to get the current user first
var current_User = System.Web.Security.Membership.GetUser(User.Identity.Name);
Then you can get ProviderUserKey etc information for the user based on current_User
.
current_User.ProviderUserKey
With Regards,
Fei Han