Oggi ho riscontrato un comportamento un po' anomalo utilizzando Jquery con pagine ASHX e Internet Explorer. In pratica nel caso in cui "impacchettate" una richiesta ajax specificando "POST" come modalità di trasferimento dati:
jQuery.ajax
({
type: "POST",
url: "Handler1.ashx",
beforeSend: function() { alert("beforeSend"); },
complete: function() { alert("complete"); },
data: 'Text1:A2',
dataType: "html",
error: function(xhr, status, errorThrown) {
//alert(errorThrown + '\n' + status + '\n' + xhr.statusText);
alert(xhr.status);
},
success: function(data) {
$("#divCont").html(data);
alert("success");
}
});
}
eseguendo l'invio, come risposta ci sono buone probabilità che venga ritornato un errore
(n. 1203x: ERROR_INTERNET_CONNECTION_ABORTED).
Ecco il codice presente...
Circa un mese fa è stato rilasciato la Beta 1 dell' Enterprise Library 5.0.
http://entlib.codeplex.com/
è stato reso disponibile anche l'aggiornamento della documentazione:
http://entlib.codeplex.com/wikipage?title=EntLib5%20Developer%20Notes&referringTitle=Home