Copy HTML of a table

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

Hi Guys,

I've got a table control on a page and I'm trying to copy the exact contents
of this table to another table control. Is this possible or do I need to
loop through the first table and copy row by row, cell by cell?

Thanks in advance!!!

Steve
 
If you are talking about HtmlTable then you can set the
DataSource property of the other table to the same object
as the first table. Otherwise, you have to copy row by
row, cell by cell.

Tu-Thach
 
Back
Top