使用字符串的indexof函数。
private void FindAll()
{
string strTempA = "Who";
string strTempB = "Who am I? Who am I? Who am I?";
string strResult = string.Empty;
while (strTempB.IndexOf(strTempA) != -1)
{
strResult = strTempB.Replace(strTempA, "<font color='red'>" + strTempA + "</font>");
break;
}
Response.Write(strResult);
}