如何在输出字段加超连接(红色部分)
for(int i=0;i<ds.Tables[DataBase].Rows.Count;i++){
TableRow trContent=new TableRow();
TableCell tcContentID=new TableCell();
TableCell tcContentPwd=new TableCell();
tcContentID.Text=ds.Tables[DataBase].Rows[i][1].ToString();
tcContentPwd.Text=ds.Tables[DataBase].Rows[i][3].ToString();
trContent.Cells.Add(tcContentID);
trContent.Cells.Add(tcContentPwd);
t_News.Rows.Add(trContent);
}