Because it does not fit my records customerClient - customerName, this is my array in VB.NET
Dim a As String
a = Request.Form("numeroCliente")
Dim b As String
b = Request.Form("nombreCliente")
Dim numeroCliente(,) As String = {{a} , {b}}
For Each valor As String In numeroCliente
For Each valor1 As String In numeroCliente
Response.Write("El valor es numeroCliente " & valor & "nombreCliente" & valor1 )
Next
Next
What I'm trying to do is to retrieve data that is in the rows of a table in an array to be able to insert them into a DB table