面对接收Ajax响应的一些问题

时间:2011-07-11 05:02:19

标签: asp.net-ajax

我在接受Ajax共鸣方面遇到了一些问题。我在IE中收到以下javascript错误

我正在根据过滤器选择更新gridview。

Sys.WebForms.PageRequestManagerParserErrorException:Sys.WebForms.PageRequestManagerParserErrorException:无法解析从服务器收到的消息。

以及Firefox中的以下Javascript错误。

* 未捕获的异常:[Exception ...“'Sys.WebForms.PageRequestManagerParserErrorException:Sys.WebForms.PageRequestManagerParserErrorException:无法解析从服务器收到的消息。调用方法时:[nsIDOMEventListener :: handleEvent]“nsresult:”0x8057001c(NS_ERROR_XPC_JS_THREW_JS_OBJECT)“location:”JS frame :: chrome://firebug/content/spy.js :: callPageHandler :: line 744“data:no] *

但是当我在scriptmanager中添加属性EnablePartialRendering =“False”时,我没有收到错误。

我在另一个页面中有相同的过滤器和gridview,但我没有收到此错误。我用谷歌搜索解决方案,我无法得到 适当的解决方案。如果有人可以帮助我找到解决方案,那就太好了。

谢谢和问候 拉胡

1 个答案:

答案 0 :(得分:1)

我已经解决了这个问题。

在后面的代码中,我调用了Response.write()方法。删除此方法后,代码工作正常。