codice:
voto = request.form("voto")
id = reuqest.form("id")
if len(voto) > 0 and isNumeric(voto) then
sql = "UPDATE tabella1 SET campo = campo + " & voto & " WHERE ID = " & id
conn.execute(sql)
end if