public string getSearchResult(string qry, string options, string noOfRecords, string strrefine)
{
string Query = "";
if (qry == "") return "";
string[] qrymod = qry.Split(' ');
if (qrymod.Length > 1)
{
for (int i=1; qrymod.Length > i; i++)
{
qry =qrymod[i];
}
}
//qry = qrymod[0];
qry = qry.Replace("\\", "\\\\").Replace("%", "\\%").Replace("_", "\\_");
if (options == "A" || options == "AC")
Query += " Select top " + noOfRecords + " cast(activityid as nvarchar(50)) as 'id',title as 'title',cast(description as varchar(200)) as 'desc' ,'AC' as 'Type' from searchActivity WHERE title like '%" + chkText(qry) + "%' or description like '%" + chkText(qry) + "%' escape '\\' ";
}
この関数から検索を実行できますが、問題は、2 つの単語を含むテキストを入力するたびに、スペースを入力した後に単語を検索することです。関数は 2 番目の単語の検索を開始します。両方の単語を検索するために検索結果をコンパイルしたい