The following code is in my Page load event.
I create a table, the label shows 5 so I know it is there.

VB Code:
  1. If Not Page.IsPostBack Then
  2.     Dim i As Int16
  3.     Dim t As New Table
  4.  
  5.     For i = 1 To 5
  6.         Dim r As New TableRow
  7.         Dim c As New TableCell
  8.  
  9.         c.Text = "MainMenu" + i.ToString
  10.  
  11.         r.Cells.Add(c)
  12.         t.Rows.Add(r)
  13.     Next
  14.  
  15.     Label1.Text = t.Rows.Count.ToString
  16.     t.Visible = True
  17. End If

Can anyone tell me why I cannot see it when I run the webapp