为了账号安全,请及时绑定邮箱和手机立即绑定

在Ajax1.0中使用Response.Redirect()

标签:
Html/CSS

昨天,朋友的程序asp.net2.0想使用Ajax1.x版本。其中有一个button,需要做页面转跳Response.Redirect(),当一点击按钮时,发生不想看到的异常:

sys.WebForms,PageRequestManagerParsesErrorExceptio n: The message received from the server could be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.

Details: Error parsing near ‘ </div>

|<html>
<head>
‘ .

朋友来电说,他想使用Insus.NET一个组件:http://www.cnblogs.com/insus/articles/1341703.html 来解决。

obj.jsAlert("","this","Default.aspx"); 这样写的话,会有一个无字窗口,点击确认之后,才转跳,就不会出现上面的异常。

因此要求Insus.NET是否可以更改这个DLL,加多一个方法重载,作为可以直接转跳页面的功能。

 

由于这个算不上Javascript方面的问题,Insus.NET想不必去改这个DLL。因此Insus.NET使用下面方法远程协助帮他把问题解决,解决方法如下:

5acf07360001405b00110016.jpgView Code  protected void Button1_Click(object sender, EventArgs e)
    {
       // Response.Redirect("~/Default.aspx");
        
        Button button = (Button)sender;
        button.PostBackUrl = "~/Default.aspx";
    }

 

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消