Domanda

i have a dotnetnuke with two portals that share users into 2 portals.

i want get roles of user A in portal 1 in a module in portal 2(in another portal)

how can i do that?

È stato utile?

Soluzione

int portalId = 1;    
UserInfo user = UserController.GetUserById(portalid, UserID);

You can get the list of roles for a user in a specific portal using array: user.Roles or you can check if the user is in a specific role using: user.IsInRole(roleName).

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top