Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Description: i am user user1 (which is also the user of the app pool of sharepoint, so when i logon with user user1 it says welcome system account).

In my code, i want to test if a file is checked out by user 1, so the result of the following:

file.CheckedOutBy.LoginName.ToLower() == userName.ToLower())

is always false (which is not correct), CheckOutby value is (Sharepoint system) while username value is (user1).

How to resolve this?

Im using SP2010

share|improve this question
Isn't this property obsolete, try using LockedByUser – Madhur Ahuja Jan 18 '11 at 10:49

3 Answers

You shouldn't use the user account which is used as a app pool account, because You will always see system account. In this case the best way is to change the app pool account to another which won't be used for another purposes.

share|improve this answer

Where does username come from?

Try this:

SPWeb web = SPContext.Current.Web; //get it from somewhere
if(file.CheckedOutBy == web.EnsureUser(username)) {
    //do something
}

That should do the comparison on the SPUser.Id

share|improve this answer
up vote 0 down vote accepted

Thanks all, this is how i solved it:

file.CheckedOutBy.LoginName.ToLower() == web.CurrentUser.LoginName.ToLower()

giving sharepoint\system on both sides, which was corrected.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.