项目问题1:由于代码已经过优化或者本机框架位于调用堆栈之上,无法计算表达式的值

书写如下代码 从Register.aspx 点一个按钮到另一个界面CommitRegister.aspx

 

-----------------------------------------------------------------------------------
        UserInfo userinfo = new UserInfo();
        userinfo.UserName = this.txtUserName.Text.Trim();
        userinfo.Password = this.txtUserPassword.Text.Trim();
        userinfo.Email = this.txtUserEmail.Text.Trim();
        userinfo.Phone = this.txtUserPhone.Text.Trim();
        userinfo.Mobile = this.txtUserMobile.Text.Trim();
        userinfo.RealName = this.txtUserRealName.Text.Trim();
        userinfo.Remark = this.txtUserRemark.Text.Trim();

        Session[Session.SessionID + UserInfo.UserIdString] = userinfo;

        Response.Redirect("CommitRegister.aspx");

----------------------------------------------------------------------

报错:由于代码已经过优化或者本机框架位于调用堆栈之上,无法计算表达式的值

上网查找:

---------------------------------

因为对 Response.End()、Response.Redirect("xxx.html") 和 Server.Transfer("xxx.html") 的调用在当前响应提前结束时引发一个 ThreadAbortException。

使用Response.Redirect("xxx.html",false)或
try
{
Response.Redirect("regok.aspx",false);
}
catch (System.Threading.ThreadAbortException e)
{
throw;
}  

 

Response.End 方法停止页的执行,并将该执行变换到应用程序的事件管线中的 Application_EndRequest 事件,Response.End 后面的代码行将不执行。此问题出现在 Response.Redirect 和 Server.Transfer 方法中,这是由于这两种方法都在内部调用 Response.End
  
   相应的解决办法如下:
(1)   对于 Response.End:
   调用 ApplicationInstance.CompleteRequest 方法而不调用 Response.End,以便跳过 Application_EndRequest 事件的代码执行。

(2)   对于Response.Redirect:
   使用重载 Response.Redirect(String url, bool endResponse),对 endResponse 参数它传递 false以取消对 Response.End 的内部调用。例如:
Response.Redirect ("nextpage.aspx", false);
如果使用这种解决方法,Response.Redirect 后面的代码将得到执行。

(3)   对于 Server.Transfer:
   请改用 Server.Execute 方法。

-------------------------------------------------

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值