Posts

Showing posts from January 5, 2014

SharePoint Update UserInfo List From AD

namespace UpdateList {     class Program     {         static void Main( string [] args)         {             Program pp = new Program ();             pp.XFunInsert();         }         private void XFunInsert()         {             using ( SPSite oSite = new SPSite ( "http://localhost:650/sites/lms" ))             {                 using ( SPWeb oWeb = oSite.RootWeb)               ...