{

string news=this.TextBox1.Text;
SqlConnection con=DB.createCon();
con.Open();
SqlDataAdapter sda=new SqlDataAdapter("select * from newsMaster where newTitle like '%"+news+"%'",con);
DataSet ds=new DataSet();
sda.Fill(ds,"news");

this.DataGrid1.DataSource=ds.Tables[0];
this.DataGrid1.DataBind();

}
怎么样使搜索的关键字高亮显示,结果是用DataGrid的超级链接列,怎么使超级链接列中包含的关键字显示为红色的。