gpt4 book ai didi

c# - 从页面方法加载文件

转载 作者:太空宇宙 更新时间:2023-11-03 22:17:55 28 4
gpt4 key购买 nike

我有一个调用页面方法的 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();
}

页面方法抛出以下异常:

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

我该如何解决这个问题?

最佳答案

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

HttpContext.Current.Response.End();

只需删除它。

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

更新

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

关于c# - 从页面方法加载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4372212/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com