欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

UpdatePanel中点击按钮 Session过期跳转页面相关问题:Sys.WebForms.PageRequestManagerParserErrorEx

程序员文章站 2022-06-30 15:59:47
使用 报错:Sys.WebForms.PageRequestManagerParserErrorException:无法分析从服务器收到的消息 使用 依旧报错:Sys.WebForms.PageRequestManagerParserErrorException:无法分析从服务器收到的消息 后,尝试 ......

使用

Response.Write("<script language=javascript>window.location.href='Login.aspx';</script>");

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

使用

 

ScriptManager.RegisterStartupScript(this, this.GetType(), "", "window.location.href='Login.aspx';", true);

 

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

 

 

后,尝试使用 

Response.Redirect("Login.aspx");

解决问题。