System.Web.UI.HtmlControls
Thanks for getting me started on it!!!
The actual manner to perform this is:
Create a (dll) reference to : System.Web
Then before the Class definition:
Imports System.Web.UI.HtmlControls
Then in the program code :
Dim myTable As New HtmlTable
myTable.ID = "ASDFADSF"
Dim myTR As New HtmlTableRow
myTR.ID = "Whatever"
Dim myTD As New HtmlTableCell
myTD.ID = "whatever"