0

我正在将旧的 asp.net 内部网应用程序转换为 .net 4.5。我遇到问题的部分之一应该是在 Excel 中打开一个包含 CSV 数据的字符串。

无论我如何尝试完成此操作,生成的 excel 文档都包含网站的内容,而不是我提供的文本。

另外一点,我目前在一个 Web 项目中拥有 aspx,而实用程序/业务类位于另一个中。我不知道这是否是问题的一部分。

请帮我解决这个问题。

CSV 样本:

string text = "\"Year\", \"Make\", \"Model\", \"Length\"\n\"1997\", \"Ford\", \"E350\", \"2.34\"\n\"2000\", \"Mercury\", \"Cougar\", \"2.38\""

代码示例:

private static void OpenCsvFile(string text, string name)
{
    var httpContext = HttpContext.Current;
    httpContext.Response.Clear();
    httpContext.Response.ContentType = "application/vnd.ms-excel";
    httpContext.Response.Charset = "";
    httpContext.Response.AppendHeader("Content-Disposition", "attachment; filename=" + name + ".csv");
    httpContext.Response.Write(text);
    httpContext.Response.Flush();
    httpContext.ApplicationInstance.CompleteRequest();
}

更新:生成的文件包含网站内容而不是 CSV 文本。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head id="Head1">
    <title>
      "My WebSite"
    </title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <link href="css/style.css" type="text/css" title="WebSite" rel="stylesheet" />
  </head>
  <body>
    <form method="post" action="Main.aspx" id="form1" name="form1">
      <table border="0" cellspacing="0" cellpadding="0" id="container">
        <td class="logo" onclick="window.location='Main.aspx';">
          <div class="logoDisplay">
            <img src="images/logo.gif" alt="" width="280px" height="67px" />
          </div>
        </td>
... etc
4

1 回答 1

0

答案是重启你的电脑。是的,它现在正在工作,无需任何进一步的代码更改。我简直不敢相信我花了这么长时间试图让它正常工作。

谢谢你的帮助,蒂姆。

于 2012-11-26T14:19:22.623 回答