2

我正在尝试在asp.net 2.0中创建一个 Web 服务来下载文件(打开或保存文件的弹出窗口),以这种方式:

$.ajax({
        type: "POST",
        url: "webservice.asmx/download",
        data: "{}",
        contentType: "application/json; charset=utf-8",
        success: function (res) {
            console.log("donwloaded");
        }
    });

在“webservice.asmx”中

[WebMethod()]
public byte[] DownloadFile(string FName)
{
    System.IO.FileStream fs1 = null;
    fs1 = System.IO.File.Open(FName, FileMode.Open, FileAccess.Read);
    byte[] b1 = new byte[fs1.Length];
    fs1.Read(b1, 0, (int)fs1.Length);
    fs1.Close();
    return b1;
}

[WebMethod]
public void download()
{
    string filename = "test.txt";
    string path = "C:\\test.txt";

    byte[] ls1 = DownloadFile(path);
    HttpResponse response = Context.Response;

    response.Clear();
    response.BufferOutput = true;
    response.ContentType = "application/octet-stream";
    response.ContentEncoding = Encoding.UTF8;
    response.AppendHeader("content-disposition", "attachment; filename=" + filename);

    response.BinaryWrite(ls1);

    response.Flush();
    response.Close();
}

通过这种方式,我看到了文件的内容(我无法通过弹出窗口下载文件)。

我哪里错了?是否有可能做到这一点?

提前致谢

4

2 回答 2

1

这不是一个好方法,要通过弹出窗口下载文件,只需打开一个新弹出窗口并将该窗口的 url 指向您的文件或 web 服务 url。

window.open("fileurl"  )
于 2013-09-20T15:55:53.043 回答
0

一个很好的方法是简单地将浏览器重定向到“webservice.asmx/download”,而不是通过 ajax 调用它。IE

window.location.href = 'webservice.asmx/download';

当浏览器检测到您返回八位字节流时​​,它会要求下载文件,但不会清除/擦除您所在的页面。

于 2013-09-20T19:21:39.670 回答