FineUI 官方论坛
标题:
关于文件下载的问题,求指教!!!!
[打印本页]
作者:
下一站,幸福
时间:
2013-12-9 17:08
标题:
关于文件下载的问题,求指教!!!!
在button事件里点击没有反应,在pageload中能正常下载,我的dll是最新的,
DownloadFile("~/Excel/" + filename);
}
public void DownloadFile(string filePath)
{
if (File.Exists(Server.MapPath(filePath)))
{
string strFileName = Path.GetFileName(filePath).Replace(" ", "%20");
Response.ContentType = "application/octet-stream";
Response.AddHeader("Content-Disposition", "attachment; filename=" + strFileName);
Response.Clear();
Response.WriteFile(Server.MapPath(filePath));
Response.End();
}
}
作者:
mlp
时间:
2014-8-7 20:55
解决了吗,我也遇到了
作者:
sanshi
时间:
2014-8-7 21:45
mlp 发表于 2014-8-7 20:55
解决了吗,我也遇到了
常见问题,请认真阅读:
http://www.cnblogs.com/sanshi/archive/2012/11/20/2778332.html
欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/)
Powered by Discuz! X3.4