Dim tblNavigation As Table = New Table
tblNavigation.CellPadding = 0
tblNavigation.CellSpacing = 0
tblNavigation.Width = 710
The line above, "tblNavigation.Width = 710", does not work. I get a message stating,
"Value of type 'integer' cannot be converted to 'System.Web.UI.WebControls.Unit'"
How do you set the Width of a Table?
