Asp Control ASP.Net

<%@ Page Language=VB Debug=true %>

Sub SubmitBtn_Click(Sender As Object, E As EventArgs)
    Dim TheRow = New TableRow
    Dim TheProduct = New TableCell
    Dim TheQuantity = New TableCell
    TheProduct.Text = txtProduct.Text
    TheQuantity.Text = txtQuantity.Text
    TheRow.Cells.Add(TheProduct)
    TheRow.Cells.Add(TheQuantity)
    Table1.Rows.Add(TheRow)
End Sub



Creating an HTML Table Using the Table Control



    id="table1" 
    runat="server"
>
    
        
        Product
        

        
        Quantity
        

    





Product:


    id="txtProduct" 
    runat=server 
/>    


Quantity:

    id="txtQuantity" 
    runat=server 
/>    


id="butSubmit"
text="OK"
onclick="SubmitBtn_Click" 
runat="server"
/>