Public Sub createtable()
Dim b as Integer = 1
For i As Integer = 1 To b
Dim tbl As New Table()
Dim tr0 As New TableRow()
Dim tr1 As New TableRow()
Dim tr2 As New TableRow()
Dim trh As New TableRow()
Dim th As New TableCell()
Dim td As New TableCell()
Dim td0 As New TableCell()
Dim td1 As New TableCell()
Dim td2 As New TableCell()
Dim td3 As New TableCell()
Dim td4 As New TableCell()
Dim td5 As New TableCell()
Dim td6 As New TableCell()
Dim td7 As New TableCell()
Dim td8 As New TableCell()
Dim td9 As New TableCell()
Dim td10 As New TableCell()
Dim td11 As New TableCell()
Dim title As New DropDownList()
Dim fname As New TextBox()
Dim mname As New TextBox()
Dim lname As New TextBox()
Dim address As New TextBox()
title.ID = "txtTitle"
title.Items.Add("Mr.")
title.Items.Add("Ms.")
title.Items.Add("Mrs.")
fname.ID = "txtfname"
mname.ID = "txtmname"
lname.ID = "txtlname"
address.ID = "txtaddress"
th.
View Complete Post