Kayla_Vermont
New Member
What I've done is create my own HtmlTextWriterTag.Table derived server control. <BR><BR>This is what I want to do with it:<BR><BR><tst:ADTAble runat="server" id="Test"><BR><tr><td>Hello, World!</td></tr><BR></tst:ADTAble><BR><BR>I know by default the framework thinks the <tr> and <td> tags are attributes of the ADTable control, but that's obviously not what I want. Nothing I do seems to avoid this error:<BR><BR>......ADTable' does not have a property named 'tr'."<BR><BR>Duh.. Surely there's a way to do this though. I've tried overriding ADTable's Render, RenderContents, RenderChildren, etc... and I still can't it to work. <BR><BR>Please advise. TIA