码迷,mamicode.com
首页 > 其他好文 > 详细

文件下载

时间:2014-08-20 19:34:52      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   文件   for   ar   

$("#download").click(function () {
     var beginTime = $("#beginTime").val();
     var endTime = $("#endTime").val();
     window.open(../loadjsonM/StationProduct_JhJson.ashx?uptype=3&beginTime= + beginTime + &endTime= + endTime);
});

 

// 写入到客户端 
System.IO.MemoryStream ms = new System.IO.MemoryStream();
book.Write(ms);
context.Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xls", "工位产量"));
context.Response.BinaryWrite(ms.ToArray());
ms.Close();
ms.Dispose();

 

文件下载,布布扣,bubuko.com

文件下载

标签:style   blog   color   os   io   文件   for   ar   

原文地址:http://www.cnblogs.com/zhongxinWang/p/3925327.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!