Results 1 to 2 of 2

Thread: cannot see dynamically created tables when app is run

Threaded View

  1. #2
    Frenzied Member Fishcake's Avatar
    Join Date
    Feb 2001
    Location
    Derby, UK
    Posts
    1,092
    although you have created the table in needs to be placed onto your page into a suitable container such as a placeholder.

    Simply add a placeholder to your aspx page
    VB Code:
    1. <asp:Placeholder id="phTest" runat=server>
    2. </asp:Placeholder>

    then after you build your table add the line
    VB Code:
    1. phtest.controls.add(t)
    Last edited by Fishcake; Mar 9th, 2004 at 08:12 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width