当前位置: 代码迷 >> ASP >> c00ce514异常是什么回事
  详细解决方案

c00ce514异常是什么回事

热度:313   发布时间:2012-06-20 20:37:21.0
c00ce514错误是什么回事
消息: 由于出现错误 c00ce514 而导致此项操作无法完成。
Ajax登陆模块出现了问题

------解决方案--------------------
If your AJAX code runs smoothly on Mozilla Firefox but experiences problems when running on Internet Explorer and gives out an error: 

"Could not complete the operation due to error c00ce514"

here is what to do : just set the proper character set encoding in your requested file and try again:)
PHP Example:


header("Content-type: text/html; charset=windows-1251");

The error means that Microsoft XML Parser is having problems when parsing the AJAX response string.


  相关解决方案