FineUI 官方论坛

标题: 用NPOI导出EXCLE 表格的问题 [打印本页]

作者: bobofsj    时间: 2016-4-6 20:23
标题: 用NPOI导出EXCLE 表格的问题
            try
            {
                MemoryStream ms = Export(dtSource);
                HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8");
                HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(strFileName, System.Text.Encoding.UTF8));
                HttpContext.Current.Response.BinaryWrite(ms.ToArray());
                //HttpContext.Current.Response.End();  //异常
                HttpContext.Current.ApplicationInstance.CompleteRequest();
                ms.Flush();
                ms.Close();
                ms = null;
            }
            catch (Exception ex)
            {        
            }



为什么在普通的aspx页面可以正常导出的 到了fineUi页面 不能导出?? 如何解决呢 谢谢


作者: leetle    时间: 2016-4-6 20:57
加我QQ  909994561
作者: guns_ken    时间: 2016-4-21 16:02
按钮enableajax设为false试下
作者: vvian123    时间: 2016-6-29 15:17
谢谢大神,成功了




欢迎光临 FineUI 官方论坛 (https://fineui.com/bbs/) Powered by Discuz! X3.4