码迷,mamicode.com
首页 > 其他好文 > 详细

处理Response.Write()方法,无法弹出的解决方法

时间:2014-08-28 12:59:59      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:blog   http   os   使用   io   ar   for   art   div   

使用Response.Write()方法,居然在页面没有弹出,然后调浏览器看到一个错误提示:

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

在页面上我写的是:

<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>

<asp:UpdatePanel ID="UpdatePanel1" runat="server">

<ContentTemplate>

<asp:GridView>

  <asp:Button ID="BtnOK" runat="server" Text="确定" OnClick="BtnOK_Click" />

</asp:GridView>

</ContentTemplate>
</asp:UpdatePanel>

在网上找到了方法解决:

中文:

Sys.WebForms.PageRequestManagerParserErrorException:

无法分析从服务器收到的消息,之所以出现此错误,常见的原因是:通过调用Response.Write()修改相应时,将启用响应筛选器、HttpModules或服务器追踪。

详细信息:分析附近的“输出内容”时出错

 

解决方法如下: 

1.如果调用Response.Write()方法的服务器控件在使用UpdatePanel的页面,则只需要在UpdatePanel下增加一个<Triggers>节点,通过PostBackTrigger注册一下改控件就可以了。代码如下: 

  1. <asp:ScriptManager ID="ScriptManager1" runat="server"> 
  2. </asp:ScriptManager> 
  3. <asp:UpdatePanel ID="UpdatePanel1" runat="server"> 
  4. <Triggers> 
  5. <asp:PostBackTrigger ControlID="Button2" /> <!--Button2就是下面那个需要在Button2_Click事件里使用Response.Write()的按钮ID--> 
  6. </Triggers> 
  7. <ContentTemplate>  
  8. <asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="Button" /> 
  9. <asp:UpdateProgress ID="UpdateProgress1" runat="server"> 
  10. <ProgressTemplate></ProgressTemplate> 
  11. </asp:UpdateProgress> 
  12. </ContentTemplate> 
  13. </asp:UpdatePanel> 

2.但是,如果是在母版页中使用UpdatePanel,则不能通过以上方法来解决,否则或出现类似以下错误: 

A control with ID ‘btnExport‘ could not be found for the trigger in UpdatePanel ‘UpdatePanel1‘. 

这主要是UpdatePanel1找不到<asp:PostBackTrigger ControlID="btnExport" />中注册的控件,因为,我们一般没有在母版页中添加这个控件(btnExport)。(当然,如果在UpdatePanel 的<ContentTemplate> 节点下添加了ID为btnExport的控件,则不会出错。) 

如果出现这样的错误该怎么办呢,我的解决方法是在需要用到Response.Write()方法的控件所在页码的Page_Load事件中添加如下代码: 
((ScriptManager)Master.FindControl("ScriptManager1")).RegisterPostBackControl(btnExport); 

//ScriptManager1是<asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager>的ID 

 

我修改后的代码:

<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>

<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<Triggers>
<asp:PostBackTrigger ControlID="BtnOK"/>《在这里加了Triggers节点,然后BtnOK是我点击确定时,要弹出提示的控件id》
</Triggers>
<ContentTemplate>

<asp:GridView>

  <asp:Button ID="BtnOK" runat="server" Text="确定" OnClick="BtnOK_Click" />

</asp:GridView>

</ContentTemplate>
</asp:UpdatePanel>

 

 

处理Response.Write()方法,无法弹出的解决方法

标签:blog   http   os   使用   io   ar   for   art   div   

原文地址:http://www.cnblogs.com/Echo529/p/3941232.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!