Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、ユーザーのユーザー ID を取得する方法を教えてください。User.Identity.Name と書くとユーザーの名前を取得し、User.IsInRole と書くとユーザーの役割を取得します。ユーザーIDを取得するには何を書く必要がありますか?
ありがとうございました
これを試して -
MembershipUser user = Membership.GetUser(User.Identity.Name); Guid userId = (Guid)user.ProviderUserKey;