Currently this is my ASP code, but I have no idea how I could create a table that divides the ID and Name of the cars
<%
if isArray(listaTipo) then
for i = lbound(listaTipo ,2) to ubound(listaTipo ,2)
response.write ( "ID->"& listaTipo(0,i) &" + Nombre: "& listaTipo(1,i)
&"<br /><br />")
next'i
else
response.write ("<div class='alert' >")
response.write ("No existen registros de tipos de autos")
response.write ("</div>")
end if
%>
Currently my data looks like this.