aBetcaliareina64
New Member
If I code the following in the VS.Net IDE, I can preview it in the 'design' mode:<BR><BR><asp:table id=xxx runat=server><BR> <asp:tablerow><BR> <asp:tablecell><BR> Hello<BR> </asp:tablecell><BR> </asp:tablerow><BR></asp:table><BR><BR>but if I put a 'runat=server' anywhere else (either in asp: tags or my own user control's tag) - like this<BR><BR><asp:table id=xxx runat=server><BR> <asp:tablerow runat=server><BR> <asp:tablecell><BR> Hello<BR> </asp:tablecell><BR> </asp:tablerow><BR></asp:table><BR><BR>I get an error in design mode that says 'error creating web control' in the design window. The page seems to render OK in either case in a browser, but the ide is saying that something's wrong. Is it that I don't know how to use the asp:table tag (I haven't found documentation covering this) or is it a bug?