/// <summary>
 /// 判斷Excel筆數是否超過上限
 /// </summary>
 /// <param name="htParams"></param>
 /// <returns></returns>
 public bool CheckExcelOutCount(Hashtable htParams, Int32 iLimitedRowsCounts)
 {
     #region
     try
     {
         VDS_ALO_STORERANK_MAIN_DBO ALOM = new VDS_ALO_STORERANK_MAIN_DBO(ref USEDB);
         return ALOM.doCheckExcelOutCount(htParams, iLimitedRowsCounts);
     }
     catch (Exception ex)
     {
         throw GetNewException(ex);
     }
     #endregion
 }