1

我有一个带有图像按钮的页面。当用户单击图像按钮时,服务器会创建页面的 PDF,并将下载的响应发送回客户端。问题是这可能需要一些时间。我该如何/应该如何处理等待客户的问题?

我最初的想法是在显示加载程序 GIF 的按钮上执行 onClientClick 事件。但是我无法检测到响应何时完成,以便我可以再次隐藏它。我曾尝试使用RegisterStartupScript以及Response.Write([script]),但这一切似乎都被 PDF 的Response.BinaryWrite(buffer)覆盖- 文件被下载但没有其他任何反应。

这是我的代码,只有下载逻辑:

protected void imgPrint_Click(object sender, ImageClickEventArgs e)
        {
            PDF pdf = new PDF();

            byte[] buffer = pdf.ExportToPDF(Request.QueryString["id"].ToString(), Request.QueryString["mode"].ToString());

            string att = "attachment; filename=" + Request.QueryString["mode"].ToString() + ".pdf";
            Response.ClearContent();
            Response.AddHeader("content-disposition", att);
            Response.ContentType = "application/pdf";
            Response.ContentEncoding = Encoding.Default;
            Response.BinaryWrite(buffer);
        }

带有 onClientClick 事件的图像按钮当前仅显示警报:

<asp:ImageButton ID="imgPrint" runat="server" 
                              ImageUrl="~/bilder/skriv_ut.png" Width="45" Height="36" 
                              onclick="imgPrint_Click" OnClientClick="loader(true);" />
4

2 回答 2

1

在 webform 中,可以使用 Jquery & Webservice

function loader(show) {
  if(show)
  {
    //show loading here
  }

       $.ajax({
           type: "POST",
           url: "MyService.asmx/myMethod",
           data: "{}",
           contentType: "application/json; charset=utf-8",
           dataType: "json",
           success: function (data) {
                //do some thing & hide loading
           },
           error: function (data) {
                //do some thing & hide loading
           }
       });
   }
});

[WebService, ScriptService]
public class MyService : WebService
{

    [ScriptMethod(ResponseFormat = ResponseFormat.Json)] 
    public static string myMethod()
    {
        PDF pdf = new PDF();

            byte[] buffer = pdf.ExportToPDF(Request.QueryString["id"].ToString(), Request.QueryString["mode"].ToString());

            string att = "attachment; filename=" + Request.QueryString["mode"].ToString() + ".pdf";
            Response.ClearContent();
            Response.AddHeader("content-disposition", att);
            Response.ContentType = "application/pdf";
            Response.ContentEncoding = Encoding.Default;
            Response.BinaryWrite(buffer);
            return "ok";
    }
}
于 2013-09-26T10:13:03.460 回答
0

通常,我使用Generic HandlerandHyperlink来下载可下载的文件或图片。

通用处理程序:

public class DocumentsHandler : IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
            Document doc; // any type

            if (doc!= null)
            {
                context.Response.ContentType = MimeMapping.GetMimeMapping(doc.FileName);
                context.Response.AddHeader("Content-Disposition", string.Format("filename={0}", doc.FileName));
                context.Response.OutputStream.Write(doc.Data, 0, doc.Data.Length);
            }
        }

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

.cs 页面:

lnkDocument.NavigateUrl = String.Format("~/Handlers/DocumentsHandler.ashx?{0}",documentId);

当用户想要查看/下载文件时,他们点击超链接。在您的情况下,网页将立即加载,单击超链接后将进行耗时的过程。

于 2013-09-26T10:05:34.553 回答