您的位置:首页 > 其它

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

2004-09-20 19:37 603 查看
//把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等。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐