将控件中的数据输出保存到本地excel或word中,同时保存图片到本地(c#)

 //把table控件中的数据保存到excel或word
  public void Save(System.Web.UI.Control source, DocumentType type)

  {
   Response.Clear();
   Response.Buffer= true;

   //设置Http的头信息,编码格式
   if (type == DocumentType.Excel)
   {
    //Excel
    Response.AppendHeader("Content-Disposition","attachment;filename=result.xls");
    Response.ContentType = "application/ms-excel";
   }
   else if (type == DocumentType.Word)
   {
    //Word
    Response.AppendHeader("Content-Disposition","attachment;filename=result.doc");
    Response.ContentType = "application/ms-word";
   }

   //设置编码
   Response.Charset="GB2312"; 
   Response.ContentEncoding=System.Text.Encoding.GetEncoding("GB2312");

   //关闭控件的视图状态
   source.EnableViewState =false;  

   //初始化HtmlWriter
   System.IO.StringWriter writer = new System.IO.StringWriter() ;
   System.Web.UI.HtmlTextWriter htmlWriter = new System.Web.UI.HtmlTextWriter(writer);
   source.RenderControl(htmlWriter);

   //输出
   Response.Write(writer.ToString());

   Response.End();
  }

  public enum DocumentType
  {
   Word,
   Excel
  }

当datagrid分页的时候在保存数据时需要先从新创建一个不分页的对象然后重新绑定数据再保存数据否则分页控件中按钮由于不是客户端的控件而无法保存出错。


   //以下是保存图片
   public void SavePic()
  {
   string path = Server.MapPath(".") + @"/images/Chart.jpeg";
   FileStream file = File.OpenRead(path);
   byte[] content = new byte[file.Length];
   file.Read(content,0,content.Length);
   file.Close();

   Response.Clear();
   Response.AppendHeader("Content-Disposition","attachment;filename=Chart.jpeg");
   Response.ContentType = "image/jpeg";//设置Http的头信息
   Response.BinaryWrite(content);//输出
   
   Response.End();
  }

不过图片保存完后,页面上的DropDownList的Select事件不能促发,不晓得是什么缘故,而页面上的button事件却可以激发事件,不知道大家有没有出现过这种问题?可以讨论一下,还是我保存图片的过程有问题?

 

评论

#  回复:将控件中的数据输出保存到本地excel或word中,同时保存图片到本地(c#) 2004-09-16 10:01 AM 木子
补充:在下载附件到客户端的时候 由于页面采用了多个frame的情况所以下载完后会使得dropdownlist等控件无法激发事件 会出现网页上有错误的提示 但是button却可以 可能是由于多个网页组合在一起受到干扰,目前还没有解决办法,所以如果使用到dropdownlist等控件的话只能在单个页面中(即页面不是frame的组合框)下载附件

#  回复:将控件中的数据输出保存到本地excel或word中,同时保存图片到本地(c#) 2004-09-16 11:02 AM 木子
把attachment改为online即可在线打开word excel等。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值