Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I have created a News Feed webpart which display news articles. (somewhat similar to news.com.au).

I have used the SharePoint 2010 OOTB PictureLibrarySlideshowWebPart to show news feed that has image slideshow. My client is complaining that when he views the news article with slideshow the CPU usage goes high (increases by 80%).

I'm using this code to create the picturelibraryslideshowwebpart

PictureLibrarySlideshowWebPart pictureSlideShowWebPart = new PictureLibrarySlideshowWebPart();
pictureSlideShowWebPart.LibraryGuid = pictureList.ID;
pictureSlideShowWebPart.ViewGuid = currentView.ID;
pictureSlideShowWebPart.Title = "Picture viewer";
pictureSlideShowWebPart.Speed = 1;
pictureSlideShowWebPart.Layout = SPPictureLibrarySlideshowDisplayStyle.NoTitleDesc;
pictureSlideShowWebPart.Mode = SPPictureLibrarySlideshowMode.Sequential;
pictureSlideShowWebPart.Width = 335;
pictureSlideShowWebPart.Height = 221;
pictureSlideShowWebPart.ChromeType = PartChromeType.None; 

Has anyone experienced such issue and is there a workaround to fix this.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.