I've been looking all over and i can't find anything to fix this problem.
IE6 only is having an issue with the response of an AJAX call and is erroring because of invalid data (alerting the data shows a single beauitful weird square)
Locally IE6 works perfectly (same page and same data), i've checked and rechecked its calling the correct URL's on the server vs here and its not cross domain or anything like that. It's also actually making the call fine and getting a response (OK status)
Calling the AJAX url on the live server in IE6 via address bar works perfectly and shows all the data fine too.
I've tried forcing the content-type and charset, i've tried turning off compression in the web.config and its still dead... and i'm running out of time :(
FF3.5, IE7, IE8 all perfectly fine locally and on the server. Server is Windows 2008 (Rackspace Cloud) and local is just the built-in dev server from Web Dev Express 2008
Its a MVC C# App.. any ideas would be appreciated!
EDIT:
Not alot i can paste but ok, controller:
public ActionResult TEST()
{
return Content("HI THERE!", "text/plain");
}
it was text/html of course to start with.
The javascript is a simple ajaxURL function which loads XMLHttpRequest or MSXML2.XMLHTTP or Microsoft.XMLHTTP. on ready state change, if the readyState == 4 then alert the result and its a square (unless you load the url in the browser directly)
Again the entire site loads fine in all other browsers so i think its more a server/config issue esp as even IE6 works locally. I've made the ajax URL's fully referenced just in case (using code to get host, checking non default port and adding it for localhost etc etc)
Viewing source all the calls to ajaxURL are perfect... i'll try another encoding option other than UTF-8 perhaps and check more compression options.
Surely i'm not the only one to ever come across this? heh