您的位置:首页 > 服装鞋帽 > 女装 > 由于代码已经过优化或者本机框架位于调用堆栈之上,无法计算表达式的值的解决方法.

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

luyued 发布于 2011-06-11 05:22   浏览 N 次  

部分代码:

try
{
string loginid = this.txtUserName.Text.Trim();
string pwd = this.txtpwd.Text.Trim();
bool check = UserLoginBLL.CheckUser(loginid, MD5Pwd.ReturnMD5Str(pwd));
if (check)
{
Session["LoginId"] = loginid;
string str = UserLoginBLL.Role(loginid);
Response.Redirect(str);
}
else
{
lblMsg.Text = "用户名/密码错误!";
}
}
catch(Exception ex)
{
lblMsg.Text = "登录失败!失败原因:" + ex.Message;
}

但是在接收页面的session值为空,也没捕获到异常,F11调试结果捕获到这个异常:由于代码已经过优化或者本机框架位于调用堆栈之上,无法计算表达式的值。

看MS给的解决方案:(http://support.microsoft.com/kb/312629/)

症状:
如果使用 Response.EndResponse.Redirect Server.Transfer 方法,将出现 ThreadAbortException 异常。您可以使用 try-catch 语句捕获此异常。
原因:
Response.End 方法终止页的执行,并将此执行切换到应用程序的事件管线中的 Application_EndRequest 事件。不执行 Response.End 后面的代码行。

此问题出现在 Response.Redirect Server.Transfer 方法中,因为这两种方法均在内部调用 Response.End
解决方案:
要解决此问题,请使用下列方法之一:

  • 对于 Response.Redirect,请使用重载 Response.Redirect(String url, bool endResponse),该重载对 endResponse 参数传递 false 以取消对 Response.End 的内部调用。例如:
    Response.Redirect ("nextpage.aspx", false);
    如果使用此替代方法,将执行 Response.Redirect 后面的代码。
  • 对于 Server.Transfer,请改用 Server.Execute 方法。

把代码改成:Response.Redirect(str,false);

问题解决。

图文资讯
广告赞助商