1

我有一个调用页面方法的 JavaScript 函数,如下所示:

function openFile(file) {
    PageMethods.LoadFile(file);
}

[System.Web.Services.WebMethod]
public static void LoadFile(string fileName)
{
   HttpContext.Current.Response.ClearContent();
   HttpContext.Current.Response.Buffer = true;
   HttpContext.Current.Response.ContentType = "application/binary";
   var filePath = @"C:\MyFiles\" + fileName;
   HttpContext.Current.Response.AddHeader("Content-Disposition", string.Format("attachment;filename=\"{0}\"", fileName));
   HttpContext.Current.Response.WriteFile(filePath);
    HttpContext.Current.Response.End();
}

page 方法抛出以下异常:

Microsoft JScript 运行时错误:Sys.Net.WebServiceFailedException:服务器方法“LoadFile”失败并出现以下错误:System.Threading.ThreadAbortException--线程被中止。

我怎样才能解决这个问题?

4

1 回答 1

4

你得到这个异常是因为你调用了 End() 并且你强制中止。

HttpContext.Current.Response.End();

只需将其删除。

参考: http: //support.microsoft.com/kb/312629/
如果你用谷歌搜索它:HttpContext.Current.Response.End

更新

我现在看到您尝试发送文件,但您已设置本地磁盘的路径。将其更改为您的 http 地址。

于 2010-12-07T00:09:58.883 回答