I have a html table in my default.aspx file with ruat server.
but i want to get the innerHtml of this table and user it any where with server side
Just my page codes like this
<table id="demo" runat="server" style="width:100%;">
..............
.......................
</table>
and server side
HtmlTable cont = (HtmlTable)this.FindControl("demo");
string tablevalue = cont.InnerHtml;
but here error is showing me
'HtmlTable' does not support the InnerHtml property.
Thanks
Surendra Tarai
tarai.surendra16@gmail.com