:master: forse ho capito

se col server si valorizza per esempio un numero 20 con lo zero iniziale, tipo per esempio:

<input id="Button1" type="button" value="button" onclick="go_there(020, 'mia poesia');" />


lo 020 viene interpretato come un numero ottale ossia 020 ottale = 16 decimale


perciò basta racchiudere il numero negli apici

<input id="Button1" type="button" value="button" onclick="go_there('020', 'mia poesia');" />