Question

Is that possible to find the share point site current logged In user information ?

I find many reference in net it show only current user (single user info only).

Was it helpful?

Solution

Tried this?

using(SPWeb oWeb = SPContext.Current.Site.OpenWeb(guidWebsite))
{
    SPUser oUser = SPContext.Current.Web.CurrentUser;
}

If I misunderstood your question, and you are asking about retrieving the number of currently logged in users, Bjorn Furuknap has previously written about this here:

http://blog.furuknap.net/2009/02/find-number-of-users-currently-logged.html

OTHER TIPS

Can you exmplain that what do you mean by this: "in net it show only current user"

Do you want to reterieve a single user info or all logged in user information?

If current logged in user information is required then you can use the above code as highlighted by James but in case you need all the logged in users then I am not really sure that you can get this via SP api.

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top