Tagged Questions
The spuser tag has no wiki summary.
2
votes
2answers
540 views
How to get SPUser object from SocialProfile in Sharepoint 2010?
How can I get the SPUser object associated to the profile from the SocialProfile in Sharepoint 2010?
Thanks
1
vote
1answer
190 views
Not able to add SPUser as LimitedAccess programatically
I am trying to add a new user in SPWeb with "limited access" as roleDefinition. But it shows error. But if i give "full control", read, design i'm able to add the user.
This is my code ...
0
votes
2answers
35 views
Restrict users to view a particular page in sharepoint
i have a sharepoint site http://spp/sitepages/page2.aspx
I have a group called "Group1" with full control. There are two users "User1" and "User2".So both the users will have full control and both of ...
0
votes
1answer
279 views
Adding Collection of SPUsers into SPGroup
We can add an SPUser into an SPGroup by objSPGroup.Users.Add(objSPUser). I need to add SPUserCollection into one SPGroup.
How can i do it?
0
votes
1answer
101 views
Getting RoleCollection as a string
We can get the roles of an SPUser by SPUser.Roles. But it will return SPRoleCollection. If we want to list all the roles we need to loop that.
For example an User has "Full Control","Read","Design" ...
0
votes
2answers
1k views
How can I list all SPUser objects in a SPGroup?
I need to retrieve all SPUser's from a SPGroup. Unfortunately, the group may contain Active Directory groups, so a simple SPGroup.Users is not enough (I'd just get a single SPUser for the AD group, ...