ciao,
ho provato con una funzione di questo tipo:
<script language = "Javascript">
function creaRiga(){
w=("<tr>");
w.document.write("<td width=5% height=16><p align=center><input type=text name=anno1 size=4></td>");
w.document.write("<td width=6% height=16><input type=text name=scuola1 size=15></td>");
w.document.write("<td width=9% height=16><input type=text name=corso_freq1 size=15></td>");
w.document.write("<td width=11% height=16><p align=center><input type=text name=durata1 size=4></td>");
w.document.write("<td width=8% height=16><input type=text name=barche1 size=10></td>");
w.document.write("<td width=9% height=16 align=center><input type=text name=risultato1 size=4></td>");
w.document.write("</tr>");
}
</script>
<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>
<script language="JavaScript">
creaRiga();
</script>
</table>
<input type="submit" value="Conferma">
solo che ho un errore nella seconda riga della funzione creaRiga():
"w.document.write è nullo o non è un oggetto"
aiuto!!!!!