ciao a tutti,
vorrei creare dei campi all'interno di una form in maniera dinamica.
Partendo da questo codice html:
<form action="step5.asp" method="post" name="form_dati">
<table border="0" width="100%" height="69">
<tr>
<td width="5%" height="16">
input type="text" name="anno" size="4"></td>
<td width="6%" height="16">
<input type="text" name="scuola" size="15"></td>
<td width="9%" height="16">
<input type="text" name="corso_freq" size="15"></td>
<td width="11%" height="16">
<input type="text" name="durata" size="4"></td>
<td width="8%" height="16">
<input type="text" name="barche" size="10"></td>
<td width="9%" height="16" align="center">
<input type="text" name="risultato" size="4"></td>
</tr>
</table>
<input type="submit" value="Conferma">
nel momento in cui clicco sul tasto "conferma" vorrei che si ricaricasse la medesima pagina e che venga aggiunta una riga alla tabella già presente contenente gli stessi campi (input type = text)
è possibile fare tutto ciò????è sufficente il javascript??