-
Blog Networks
-
Archives
- June 2010 (1)
- February 2010 (5)
- November 2009 (4)
- October 2009 (3)
- September 2009 (2)
- August 2009 (2)
- July 2009 (3)
- April 2009 (4)
- March 2009 (11)
- February 2009 (1)
- November 2008 (1)
- June 2008 (1)
- April 2008 (1)
- March 2008 (3)
- September 2007 (1)
- August 2007 (1)
- July 2007 (2)
-
Recent Posts
CLUSTER MAP
Tag Cloud
70-541 All Files Attachment Certification Configuration ContentType Copy CopyInToItems Copy WebService CreateWorkSpace Database Database Categories Download Download Document Error Excel Calculation Services Excel Services Expression Blend 3 Extensions Feature File GetItem Hidden List InternalName jQuery Library Links List ListIte Lists List URL MOSS MOSS 2007 Navigation SharePoint SharePoint-2010 SharePoint Database Silverlight SP2010 New Features SPQuery Sql Query Tips Series Upload User Information List WebService
User Information List – URL
Posted by Shantha Kumar on 3rd April 2009
In my WSS – User Information List post, I’ll list out the fields available under hidden “User Information List”. Now i’ll like to share the details of URL for that “User Information List”.
By using follwoing code, we can get the Users list url,
SPList userList = SPContext.Current.Web.SiteUserInfoList;
string url = userList.Forms[PAGETYPE.PAGE_DISPLAYFORM].Url;
the above code will return like the following url http://mysite/_layouts/userdisp.aspx. But, this url is not the exact url.
The actual url for “User Information List” available under _Catalogs folder.
FYI, I list out the url’s here,
- http://mysite/_catalogs/users/detail.aspx
Shows the detail view of only Users in the list. - http://mysite/_catalogs/users/simple.aspx
Shows the simple view of only Users in the List - http://mysite/_catalogs/users/allgroups.aspx
Shows all the groups without users available in Site.
In my next post, i’ll explain about the default folders available in this “User Information List”.
- MOSS
- SharePoint
Filed Under
RSS feed for comments on this post. TrackBack URL

2 Comments »
have a nice
Comment by izhar khan — May 12, 2009 @ 12:02 pm
Is it possible somehow to put an Alert on this list – like on normal lists?
Comment by rlaci — October 15, 2009 @ 9:14 am