示例#1
0
 /// <summary>
 /// Whether to use the current page ID on the <c>QueryString</c>.
 /// </summary>
 /// <param name="pageId">The page id.</param>
 /// <param name="portalId">The portal id.</param>
 /// <returns><c>true</c> if the current page ID should appear on the <c>QueryString</c>; otherwise <c>false</c></returns>
 private static bool UsePageId(int pageId, int portalId)
 {
     return(pageId > 1 && ModuleBase.AllowArticlePagingForPortal(portalId));
 }