G Guest Jun 16, 2005 #1 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
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
B Brock Allen Jun 17, 2005 #2 Server side comments appear as: <%-- <asp:SomethingThatWontBeIncluded /> --%> -Brock DevelopMentor http://staff.develop.com/ballen
Server side comments appear as: <%-- <asp:SomethingThatWontBeIncluded /> --%> -Brock DevelopMentor http://staff.develop.com/ballen
G Guest Jun 17, 2005 #3 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
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