For å angi varigheten for nye ikonet i Sharepoint (indikatoren som viser ved siden av nye elementer) access the SharePoint WebApplication object and set the value for DaysToShowNewIndicator.
SPWebApplication WebApp = SPWebApplication.Lookup(nye
Uri(WebAppURL.Text));
WebApp.DaysToShowNewIndicator = 3;
WebApp.Update();
Stevie Widera