ciao a tutti, io ho questo script
function quantita(quantita){
var imp = document.getElementById("pu").value*document.getEl ementById("quantita").value;
document.getElementById("importo").value = imp;
}
e i campi a qui si riferisce sono questi
<td bgcolor="#eeeeee">
<input type="text" name="pu" id="pu" value="<%Response.Write ors("pu")%>">
</td>
<td bgcolor="#eeeeee">
<input type="text" name="quantita" id="quantita" value="" onKeyUp="quantita(this.value)">
</td>
<td bgcolor="#eeeeee">
<input type="text" name="importo" id="importo">
</td>
solo che continua a darmi errore, mi dice: object doesn't support this properites or method......qualcuno può aiutarmi?