When ever I use the search utility in the community starter kit and results return more than one page worth of the content, the browser just keeps churning and the page will never load. If you were to search this web site for the term "Jack Johnson" the page will not load. Has anybody got a solution to this problem. It appears to be in the
\CommunityStarterKit\Engine\Framework\ContentPages\Controls\ContentList.cs
file in the
CreateControlHierarchy(bool useDataSource) method.
When certain number of results are returned from the database this method is called over and over and each time the method is called the value of the NumItems variable DOUBLES! Just place a breakpoint on line 471 of the above file and watch the fun.
470: // store the number of items created in viewstate for postback scenarios
471: NumItems = itemCount;
Does anyony have any thoughts or solutions to this problem with the community starter kit.