/// <summary> /// 添加 /// </summary> /// <returns>是否操作成功(true成功,false失败)</returns> public bool InsertKeyword(string mstrKeyword, string mstrInfoTypeID) { bool blRet = false; //根据判断,如果输入的关键词的长度过于长,将不进入用户键入关键词搜集 int KeywordLengthRequest = 20; if (KeywordLengthRequest < mstrKeyword.Length || mstrKeyword.Length == 0) { //超过限制时,就不添加进入用户关键词表 return(blRet); } //string[] KeyWords = mstrKeyword.Trim().Split(' '); //for (int i = 0; i < KeyWords.Length; i++) //{ // blRet = dal.InsertKeyWord(KeyWords[i].Trim(), mstrInfoTypeID); //} //将关键词的拆分移到存储过程中进行,另:mstrInfoTypeID为0表示所用类型 blRet = dal.InsertKeyWord(mstrKeyword, mstrInfoTypeID); return(blRet); }