c#将数据导出到excel中
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();
每天积累一点,离成功就近一点
浙公网安备 33010602011771号