HOWTO comments within ASP:Table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to add comments on the HTML page within an ASP:Table? (ever
try and use "comments" as a search word <g>?)

tia,
Sue
 
Not sure but maybe when you create your cell you could add a new Literal and
stuff your comment in there.

TableCel tc = new TableCell();
tc.Controls.Add(new Literal("<!--my comment-->"));

HTH
 
Back
Top