UltraWebGrid单元格中加入超链接

private void UltraWebGrid1_InitializeRow(object sender, Infragistics.WebUI.UltraWebGrid.RowEventArgs e) { e.Row.Cells[0].Value = "<a href="http://www.infragistics.com/go.aspx?id=" + e.Row.Cells[0].Value.toString() + "" mce_href="http://www.infragistics.com/go.aspx?id=" + e.Row.Cells[0].Value.toString() + "">" + e.Row.Cells[0].Value.toString() + "</a>"; } e.Row.Cells[0].Value = "< a href='http://www.infragistics.com/go.aspx?id=" + e.Row.Cells[0].Value.toString() + "' title='" + e.Row.Cells[1].Value.toString() + '">" + e.Row.Cells[0].Value.toString() + "</a>";

你可能感兴趣的:(object)