1.通过设置样式,可以去掉:
A:link { COLOR: #000000; TEXT-DECORATION: none }
A:visited { COLOR: #000000; TEXT-DECORATION: underline}
A:hover { COLOR: red; TEXT-DECORATION: none }
A:active { COLOR: #000000 }
2.你可以用sql语句实现:
  select title+用户名 as temp1 from 表名
然后在 datagrid 绑定temp1字段.
也可以用itemtemplate控件绑定两个字段来实现:
<%# "<b>" + 
    DataBinder.Eval(((DataGridItem)Container).DataItem, "LastName") + 
    "</b>, " +
    DataBinder.Eval(((DataGridItem)Container).DataItem, "FirstName")
%>