scusami errore mio.. :-)


codice:
this.checkBox.setChangeHandler("aggiorna");
this.aggiorna = function() {
	dati = new LoadVars();
	dati.ValoreASP = this.checkBox.getValue();
	dati.onLoad = function(success) {
		if (success) {
			// istruzioni per il caricamento corretto
		} else {
			// istruzioni per l'errore di caricamento
		}
	};
	dati.send("file.asp", dati, "POST");
};
nel file.asp
<%
valore_passato = Request("ValoreASP ")
Response.Write (valore_passato)
%>




tiger