Ok I found another issue and it looks to be a bug. I was getting back
This error message
when using AOL 9.0:
Message: Ok
Type: ConnectFailure
Status: 200
But the above error shouldn't be an error so I checked the core.js file
and found that the 'OK' response it looks for is case sensitive in line
302 of core.js:
if(this.xmlHttp.status == 200 && this.xmlHttp.statusText == "OK") {
so I changed it to this:
if(this.xmlHttp.status == 200 && this.xmlHttp.statusText.toUpperCase()
== "OK") {
recompiled and my app is now working in AOL.
Why bother with AOL? Well my app is an ecommerce app and I couldn't
have the latest version of AOL not be compatible.
--~--~---------~--~----~------------~-------~--~----~
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/
Don't forget to read my blog at http://weblogs.asp.net/mschwarz/
-~----------~----~----~----~------~----~------~--~---