/// <summary>
 /// Activates the list item based on the listName
 /// </summary>
 /// <param name="strListName"></param>
 /// <param name="strCamelQuery"></param>
 protected void ActivateList(string listName, int rowId, string auditListName)
 {
     objCommonBLL = new CommonBLL();
     string strSequenceField = string.Empty;
     if (string.Equals(ListName, CHAPTERLIST))
     {
         strSequenceField = "Chapter_Sequence";
     }
     else
     {
         strSequenceField = "Page_Sequence";
     }
     if (string.Equals(ListName, CHAPTERLIST))
     {
         objCommonBLL.UpdateListItemStatus(strSiteURL, ListName, rowId, AuditListName, AUDIT_ACTION_ACTIVATE, STATUS_ACTIVE, strSequenceField);
         objCommonBLL.ListItemStatusUpdateForChapterPages(strSiteURL, CHAPTERPAGEMAPPINGLIST, rowId, STATUS_ACTIVE);
     }
     else if (string.Equals(ListName, MASTERPAGELIST) || string.Equals(ListName, CHAPTERPAGEMAPPINGLIST))
     {
         objCommonBLL.UpdateListItemStatus(strSiteURL, ListName, rowId, AuditListName, AUDIT_ACTION_ACTIVATE, STATUS_ACTIVE, strSequenceField);
     }
     else if (string.Equals(ListName, TEMPLATELIST) || string.Equals(ListName, WELLBOOKLIST))
     {
         objCommonBLL.ActivateListValues(strSiteURL, listName, rowId, auditListName, false, true);
     }
     else if (string.Equals(ListName, USERLIST) || string.Equals(ListName, TEAMLIST) || string.Equals(ListName, TEAMSTAFFLIST))
     {
         objCommonBLL.ActivateListValues(strSiteURL, listName, rowId, auditListName, false, false);
     }
     else
     {
         objCommonBLL.ActivateListValues(strSiteURL, listName, rowId, auditListName, true, true);
     }
 }