我有一个gridview,我想在一个单元格内插入一个面板,我想在其中呈现html标签。相反,我在文本中看到了 html 标签。有任何想法吗?。
protected void grdThreat_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
Panel mainPanel = new Panel();
mainPanel.Controls.Add(new LiteralControl(e.Row.Cells[4].Text));
e.Row.Cells[4].Controls.Add(mainPanel);
}
}