0

好样的!

我正在编写一个报告脚本,该脚本在单击按钮时会运行许多报告(pdf)。报告是在网络服务器上创建的,然后我希望用户可以选择下载文件。我已经制定了从服务器下载一个文件的脚本。但我不确定如何下载多个文件?(大概有50个)

运行一份报告后,我将用户重定向到 http 处理程序脚本。

Response.Redirect("Download.ashx?ReportName=" + "WeeklySummary.pdf");

public class Download : IHttpHandler {


public void ProcessRequest(HttpContext context)
{


   StringBuilder sbSavePath = new StringBuilder();
   sbSavePath.Append(DateTime.Now.Day);
   sbSavePath.Append("-");
   sbSavePath.Append(DateTime.Now.Month);
   sbSavePath.Append("-");
   sbSavePath.Append(DateTime.Now.Year);

    HttpContext.Current.Response.ClearContent();
    HttpContext.Current.Response.ContentType = "application/pdf";
    HttpResponse objResponce = context.Response;
    String test = HttpContext.Current.Request.QueryString["ReportName"];
    HttpContext.Current.Response.AppendHeader("content-disposition", "attachment; filename=" + test);
    objResponce.WriteFile(context.Server.MapPath(@"Reports\" + sbSavePath + @"\" + test));    
    HttpContext.Current.Response.Flush();
    HttpContext.Current.Response.Clear();
    HttpContext.Current.Response.End();

}
public bool IsReusable { get { return false; } } 

}

提前致谢,如果您还想看我的剧本,请告诉我。

4

1 回答 1

1

我马上看到的 2 个选项是简单地重复调用 HTTP 处理程序的明显选项。另一种方法是将它们压缩到服务器上并通过网络发送一个压缩文件。您可以使用内置的GZipStream类来完成此操作。

此外,您还需要在处理程序中添加一些代码,以便在下载这些临时文件后对其进行清理。

于 2010-10-20T13:56:26.360 回答