Please take a look at the html listed below and let me know why IE6 freezes when trying to load the remote script (located at ‘http://code.katzenbach.com/Default.aspx‘). The script returns JSONP and executes the ‘callbackFunction’ listed in the header. When it runs correctly, you’ll see a pop-up alert showing numbers 1-500. This works fine in FF3 and IE7. I can’t understand why it fails in Internet Explorer 6 -the processor gets pegged and everything hangs.
Run it yourself and let me know if you experience the same problem. I’ve been staring at this problem all day. Thanks for your help.
Andrew
<html> <head> <script type='text/javascript'> function callbackFunction(Result) { alert(Result) ; } </script> <script type='text/javascript' src='http://code.katzenbach.com/Default.aspx?callback=callbackFunction&test=true&c=500'></script> </head> <body> Here </body> </html>
If you go directly to the script (http://code.katzenbach.com/Default.aspx?callback=callbackFunction&test=true&c=500), you’ll see the file (unknown mime type) is not being processed. This is likely due to a problem with your server setup. It doesn’t seem to know how to process .aspx and in instead trying to stream out the file.