aspx页面使用ajax遇到try catch中使用Response.End()报错

Posted 奋斗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了aspx页面使用ajax遇到try catch中使用Response.End()报错相关的知识,希望对你有一定的参考价值。

1、使用Ajax接收数据,在返回Response.Write()后应该调用Response.End()才能将数据写入到调用的页面,才能被jQuery的回调函数获取到返回的JSON数据

2、在try--catch里面不能用Response.End(),否则会报错:由于代码已经过优化或者本机框架位于调用堆栈之上,无法计算表达式的值。

 

在调用Response.End()时,会执行Thread.CurrentThread.Abort()操作。

如果将Response.End()放在try...catch中,catch会捕捉Thread.CurrentThread.Abort()产生的异常System.Threading.ThreadAbortException。

解决方法(任选一个):

1. 在catch中排除ThreadAbortException异常,示例代码如下:

try
{
Response.End();
}
catch (System.Threading.ThreadAbortException)
{
}
catch (Exception ex)
{
Response.Write(ex);
}

2. 用Context.ApplicationInstance.CompleteRequest()结束当前请求,代码如下:

protected void Page_Load(object sender, EventArgs e)
{
try
{
Response.Write("Hello world!");
this.Page.Visible = false;
Context.ApplicationInstance.CompleteRequest();
}
catch (Exception ex)
{
Response.Write(ex);
}
}

以上是关于aspx页面使用ajax遇到try catch中使用Response.End()报错的主要内容,如果未能解决你的问题,请参考以下文章

原生Ajax的怎么用?

TP5中关于try和catch

try / catch和MFC TRY / CATCH有什么区别?

在aardio的函数里try...catch语句中使用return。

spring 事物中遇到try catch 事物不会滚

兼容ie7到ie11,chrome,firefox的ajax代码