how do i write the xsl transform results?

  • Thread starter Thread starter suzy
  • Start date Start date
S

suzy

if i have an xsl transform that results in a table being generated, how do i
display that table on my page at runtime?

currently i am having to dim a table control with a row and a cell, then
adding the result of the xsl transform to the cell.

but this means i end up with a table within a table, when all i want is just
1 table (from the xsl).

thanks.
 
Use an asp:literal control and add the results to the literal control's text
property.
 
Back
Top