【问题标题】:Export DataTable to Excel without using Interop Date Fromat change when open the excel file打开 excel 文件时将 DataTable 导出到 Excel 而不使用互操作日期格式更改
【发布时间】:2016-07-13 23:14:54
【问题描述】:

我已将 DataTable 导出到 excel 文件。但是当我打开 excel 文件时,日期时间格式发生了变化。
当我导出数据 DateTime 字段时包含“7/21/2016 12:00:00 AM”值。当我打开 excel 文件时,日期时间字段显示“7/21/2016 0:00”值。
但是当我在 excel 文件公式栏中检查 DateTime 值时显示正确的“7/21/2016 12:00:00 AM”。

有什么办法可以解决这个问题吗?

我使用以下代码将 DataTable 导出到 excel:

HttpContext.Current.Response.Clear();
HttpContext.Current.Response.ClearContent();
HttpContext.Current.Response.ClearHeaders();
HttpContext.Current.Response.Buffer = true;
HttpContext.Current.Response.ContentType = "application/ms-excel";
HttpContext.Current.Response.Write(@"<!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 4.0 Transitional//EN"">");
HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + curEventName + ".xls");

HttpContext.Current.Response.Charset = "utf-8";
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("windows-1250");
////sets font
HttpContext.Current.Response.Write("<font style='font-size:10.0pt; font-family:Calibri;'>");
HttpContext.Current.Response.Write("<BR><BR><BR>");
//sets the table border, cell spacing, border color, font of the text, background, foreground, font height
HttpContext.Current.Response.Write("<Table border='1' bgColor='#ffffff' " +
  "borderColor='#000000' cellSpacing='0' cellPadding='0' " +
  "style='font-size:10.0pt; font-family:\"Times New Roman\"; background:white;'> <TR>");
//am getting my grid's column headers
int columnscount = dt_exportResponse.Columns.Count;

for (int j = 0; j < columnscount; j++)
{      //write in new column
    HttpContext.Current.Response.Write("<Td>");
    //Get column headers  and make it as bold in excel columns
    HttpContext.Current.Response.Write("<B>");
    HttpContext.Current.Response.Write(dt_exportResponse.Columns[j].ColumnName);
    HttpContext.Current.Response.Write("</B>");
    HttpContext.Current.Response.Write("</Td>");
}
HttpContext.Current.Response.Write("</TR>");
foreach (DataRow row in dt_exportResponse.Rows)
{//write in new row
    HttpContext.Current.Response.Write("<TR>");
    for (int i = 0; i < dt_exportResponse.Columns.Count; i++)
    {
        HttpContext.Current.Response.Write("<Td>");
        HttpContext.Current.Response.Write(row[i].ToString());
        HttpContext.Current.Response.Write("</Td>");
    }

    HttpContext.Current.Response.Write("</TR>");
}
HttpContext.Current.Response.Write("</Table>");
HttpContext.Current.Response.Write("</font>");
HttpContext.Current.Response.Flush();
HttpContext.Current.Response.End();

【问题讨论】:

    标签: c# excel datetime datatable


    【解决方案1】:

    这不是错误。这只是您如何指示 Excel 显示 DATE 类型的给定单元格的问题。您可以通过修改 Format->Cells:Number 来覆盖任何单元格,或者您可以使用各种内置的日期处理函数来拼凑您的任何 ad hoc 日期/时间格式如果适合您,不妨像 22 年 10 月 16 日星期六

    【讨论】:

      猜你喜欢
      • 2017-07-12
      • 1970-01-01
      • 1970-01-01
      • 2022-10-08
      • 1970-01-01
      • 2018-03-13
      • 2019-11-17
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多