C#窗体应用程序怎么把dataset或者是access数据库中的数据写到excel表里面

C#窗体应用程序怎么把dataset或者是access数据库中的数据写到excel表里面... C#窗体应用程序怎么把dataset或者是access数据库中的数据写到excel表里面 展开
 我来答
紫玫瑰2512
2013-11-29
知道答主
回答量:5
采纳率:0%
帮助的人:2.4万
展开全部
using System.Text;
using System.IO;

/// <summary>
/// 以下为数据导出代码
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void LinkButton5_Click(object sender, EventArgs e)
{
string style = @"<style> .text { mso-number-format:\@; } </script> ";
Response.ClearContent();//清除缓存区内容
Page.Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");
Response.AppendHeader("content-disposition", "attachment; filename=MyExcelFile.xls;
Response.ContentType = "myexcel/excel";//设置输出流的类型
StringWriter sw = new StringWriter();//写入流
XhtmlTextWriter xtw = new XhtmlTextWriter(sw);
GridView2.RenderControl(xtw);
Response.Write(style);
Response.Write(sw.ToString());
Response.End();
bind();
}
public override void VerifyRenderingInServerForm(Control control) { }
wangpaishi
2013-11-27 · TA获得超过570个赞
知道小有建树答主
回答量:932
采纳率:52%
帮助的人:754万
展开全部
百度搜 NPOI
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式