//取得Tmp2成功和錯誤的筆數
 public ArrayList GetTmp2Count(string strLoginUser)
 {
     ArrayList ParameterList = new ArrayList();
     ArrayList arl_Return = new ArrayList();
     int i_FileToTemp_Right_count = 0;
     int i_FileToTemp_Wrong_count = 0;
     DBO.MKT_ChainItemInfoDBO dbo = new MKT_ChainItemInfoDBO(ref USEDB);
     //取得正確和錯誤筆數
     ParameterList.Clear();
     ParameterList.Add(strLoginUser);
     DataTable dtCounts = dbo.QueryTemp2Count(ParameterList);
     foreach (DataRow dr in dtCounts.Rows)
     {
         if (dr["status"].ToString() == "2")
         {
             i_FileToTemp_Wrong_count = int.Parse(dr["counts"].ToString());
         }
         if (dr["status"].ToString() == "1")
         {
             i_FileToTemp_Right_count = int.Parse(dr["counts"].ToString());
         }
     }
     arl_Return.Add(i_FileToTemp_Right_count);
     arl_Return.Add(i_FileToTemp_Wrong_count);
     return arl_Return;
 }