I have a gridview and i want to insert inside a cell a Panel in which inside i want to render html tags. Instead i see in the text the html tags. Any ideas?.\[code\] 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); }}\[/code\]