ASP.NET从内存而不是从文件中流内容

前端之家收集整理的这篇文章主要介绍了ASP.NET从内存而不是从文件中流内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
用户已请求“下载”GridView内容的csv文件表示的选项.有没有人知道如何在不将文件保存到服务器的情况下执行此操作,而只是将其从内存中流式传输给用户

谢谢

解决方法

实现IHttpHandler.

我在ProcessResponse中使用类似于以下的东西来输出之前在数据库表中构造的CSV …

public void ProcessRequest(HttpContext context)
{
    HttpResponse response = context.Response;
    HttpRequest request = context.Request;

    //Get data to output here...

    //Turn off Caching and enforce a content type that will prompt to download/save.
    response.AddHeader("Connection","close");
    response.AddHeader("Cache-Control","private");
    response.ContentType = "application/octect-stream";

    //Give the browser a hint at the name of the file.
    response.AddHeader("content-disposition",string.Format("attachment; filename={0}",_filename));

    //Output the CSV here...
    foreach(BatchDTO.BatchRecordsRow row in dtoBatch.BatchRecords)
        response.Output.WriteLine(row.Data);

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

有许多库可以使生成CSV变得更容易,您应该只能将它传递给Response.OutputStream以使其写入那里而不是文件流.

原文链接:https://www.f2er.com/aspnet/251275.html

猜你在找的asp.Net相关文章