The spuser tag has no wiki summary.
2
votes
1answer
341 views
How to get SPUser from FBA login name
I have a Form Based Authentication login name login_name
how to get an SPUser object for that login name.
I have tried the
Web.EnsureUser(string.Format("c:0-.f|role|{0}", name));
but it gives me ...
0
votes
1answer
75 views
How to set a UserMulti field via a UserField Control?
I have a list similar to the usual Tasks Sharepoint List and I introduced the field assigned to as a multi user field like this (I have read somewhere that with Mult option should always be set to ...
0
votes
1answer
128 views
Email property is empty on SPUser object, how to fill?
I have a piece of code which gets the email address of a SPUser object. The email property is empty. Where I can fill the email address of this user? Is it in SharePoint or somewhere in AD? I dont ...
0
votes
1answer
170 views
How to check if current user is exist in a AD group inside a Sharepoint group
I have a sharepoint permission group with some permissionslevels. The name is: "SPProgress". Inside this group I have inserted a AD usergroup with the name "ADProgress".
I would like to check in ...
0
votes
0answers
11 views
Getting a SPUser's title (as it is on Active Directory)
I need to get the Titles (eg: Mr, Mrs, Dr) for SPUsers which are stored in a list.
The Title is not available on the SPUser object, is it possible to somehow get this information, assuming it is ...
0
votes
0answers
7 views
Concept of a dynamic list view based on user location
I am requested to create a list with the following mandatory columns:
Image | Content | GER(bool) | Ger-ReleaseDate (Date)| UK(bool) | UK-ReleaseDate(Date) | ES | ... | additional information
From ...
0
votes
0answers
38 views
Get manager of current user in workflow
how can I get the current user's manager's phone information.
I select the current user id like this:
public Guid workflowId = default(System.Guid);
public SPWorkflowActivationProperties ...