How I can get User by ID? MembershipUser mu=Membership.GetUser("UserName"); But, I want get user by ID, but not by name.
|
feedback
|
This will work (expects object ProviderUserKey) - which is GUID by the default asp.net membership provider. | ||||
|
feedback
|
|
Since user names are unique, you can query your application database | |||
|
feedback
|
|
If you're using inbuilt MembershipProvider, then you'll have to write a helper method which will do the job for you and return a MembershipUser instance based on the Id to query. If you're using your own custom MembershipProvider, in that case you can create a method overload for Membership.GetUser() which will take an Id and return a MembershipUser instance, However, you will need to cast the MembershipProvider default instance to the type of your custom MemberdhipProvider to gain the type-safe access | |||
|
feedback
|
|
If you are using(or inheriting from) the standard SqlMemberShipProvider you can use Where | |||
|
feedback
|