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();
[…]