Server Error in '/myweb' Application.'HtmlTable' does not support the InnerHtml property. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.NotSupportedException: 'HtmlTable' does not support the InnerHtml property.Source Error: 
Line 44:             HtmlTable ht = new HtmlTable();
Line 45:             ht.Width = "100%";
Line 46:             ht.InnerHtml="<tr><td>"+rname+"</td></tr>";
Line 47:             ht.InnerHtml += "<tr><td>&nbsp;&nbsp" + content + "</td></tr>";
Line 48:             ht.InnerHtml += "<tr><td align=riht>" + sname + "</td></tr>";msdn里htmltable明明有innerhtml属性,是public的,怎么回事?