SharePoint में नई आइकन के लिए अवधि निर्धारित करने के लिए (नए आइटम के बगल से पता चलता है जो सूचक) access the SharePoint WebApplication object and set the value for DaysToShowNewIndicator.
SPWebApplication WebApp = SPWebApplication.Lookup(new Uri(WebAppURL.Text));
WebApp.DaysToShowNewIndicator = 3;
WebApp.Update();
[…]