FineUI 官方论坛

标题: 下载文件时为什么总是报错? [打印本页]

作者: 石头    时间: 2012-7-28 09:43
标题: 下载文件时为什么总是报错?
使用以下代码下载文件,可是总是报 JS错误:
string path = Request.MapPath("~/Download/StudentTemplate.xls");
           
            System.IO.FileInfo file = new System.IO.FileInfo(path);
            Response.Clear();
            Response.AddHeader("Content-Disposition ", "attachment;   filename= " + file.Name);
             Response.AddHeader("Content-Length ", file.Length.ToString());
            Response.ContentType = "application/excel";
            Response.WriteFile(file.FullName);
            Response.Flush();
            Response.Close();
            Response.End();
请问如何解决?ExtAspNet是3.1.6的,谢谢各位老大!

作者: 易水临风    时间: 2012-7-29 02:15
有没有设置点击下载的按钮的EnableAjax="False",我想应该要设置的。




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