ASP table in another Asp Table

liunx

Guest
Ok you can put a normal html table into another table with out much effort but when I try to do it with asp tables it only kind of works I can't use the Text function to enter text. Anyone care to enlighten me on this?

<asp:table>
<asp:tableRow>
<asp:TableCell>
<asp:Table>
<asp:TableRow>
<asp:TableCell Text="why doesn't this print">
this prints
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</asp:TableCell>
</asp:tableRow>
</asp:table>got the answer needed runat="server"!!!! damn I'm good thanks for everyone's help
 
Top