Example #1
0
 public int CheckKeyWordExsit(string key_word)
 {
     try
     {
         dao = new SystemKeyWordDao(connectionstring);
         return dao.CheckKeyWordExsit(key_word);
     }
     catch (Exception ex)
     {
         throw new Exception("SystemKeyWordMgr-->YesOrNokeyWordExsit-->" + ex.Message, ex);
     }
 }