码迷,mamicode.com
首页 > Windows程序 > 详细

c#将数据导出到excel中

时间:2014-11-11 12:14:17      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   os   sp   for   数据   on   bs   

DataTable   dt = new BLL.T_Expiry().GetAllList().Tables[0];//查询数据

string FileName = "T_Users.xls";

HttpResponse response = Page.Response;

response.AppendHeader("Content-Disposition", "attachment;filename=" + FileName);
Response.ContentType = "application/ms-excel";
response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");

foreach (DataColumn dc in dt.Columns)
{
response.Write(dc.ColumnName + "\t");
}

response.Write("\n");

foreach (DataRow dr in dt.Rows)
{
for (int i = 0; i < dt.Columns.Count; i++)
{
response.Write(dr[i].ToString() + "\t");
}

response.Write("\n");
}

response.End();

c#将数据导出到excel中

标签:http   io   ar   os   sp   for   数据   on   bs   

原文地址:http://www.cnblogs.com/apes-monkeys/p/4088894.html

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