Il mio codice è il seguente:
For x = 0 To dst.Tables("Anagrafica").Rows.Count - 1
With dst.Tables("Anagrafica").Rows(x)
%>
<tr>
<td bgcolor=PowderBlue >
<input id=<%="ID"& .item("IDAnagrafica")%> type=text>
</td>
</tr>
<%
End With
Next
Come faccio poi a richiamare in un ciclo i valori attribuiti alla caselle generate con ID automatico?
avevo pesato a qualcosa del genere ma chiaramente non funziona:
For x = 0 To dst.Tables("Anagrafica").Rows.Count - 1
With dst.Tables("Anagrafica").Rows(x)
Response.Write("ID"& .item("IDAnagrafica").value)
End With
Next