sqlog

sql & co
posts - 78, comments - 14, trackbacks - 1

marzo 2010 Blog Posts

JQuery, Ashx e Internet Explorer

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...

posted @ mercoledì 10 marzo 2010 17:35 | Feedback (0) |

Enterprise Library 5.0 - B1

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

posted @ martedì 9 marzo 2010 12:25 | Feedback (0) |

Powered by:
Powered By Subtext Powered By ASP.NET