Hi, this is an answer to the following thread: http://groups.google.com/group/ajaxpro/browse_thread/thread/1ec427daacc3ac7d/9b677128fa570a6c#9b677128fa570a6c
There is a possibility to configure Internet Explorer to have it's own timeout when running http requests (see: http://support.microsoft.com/?kbid=181050). If you have configured the RequestTimeout setting to less than the AjaxPro.timeoutPeriod the request will be aborted earlier. If you want to track for this situation you have to check the res.error value (like you have to do every time!!!): <script type="text/javascript"> function callback(res) { if(res.error != null && res.error.Status == 12002) { alert("Your web browser is configured with RequestTimeout less then AjaxPro.timeoutPeriod."); return; } alert(res.value); } </script> -- Best regards | Schöne Grüße Michael Microsoft MVP - Most Valuable Professional Microsoft MCAD - Certified Application Developer http://weblogs.asp.net/mschwarz/ http://www.schwarz-interactive.de/ mailto:[EMAIL PROTECTED] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ajax.NET Professional" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/ajaxpro The latest downloads of Ajax.NET Professional can be found at http://www.ajaxpro.info -~----------~----~----~----~------~----~------~--~---
