Pentru a seta durata de noua icoana in SharePoint (indicatorul care arată lângă elemente noi) access the SharePoint WebApplication object and set the value for DaysToShowNewIndicator.
SPWebApplication WebApp = SPWebApplication.Lookup(noi
Uri(WebAppURL.Text));
WebApp.DaysToShowNewIndicator = 3;
WebApp.Update();
Stevie Widera