How to display HTML special characters?
As titled. The VS.Net will translate the following code:
tblNewRow = new System.Web.UI.HtmlControls.HtmlTableRow();
tblNewCol = new System.Web.UI.HtmlControls.HtmlTableCell();
tblNewCol.InnerText = "Copyright ©";
tblNewRow.Cells.Add(tblNewCol);
and displays " ©" instead of the special characters..
Thanks!!
Lethain