0

古いasp.netイントラネットアプリケーションを.net4.5に変換しています。私が問題を抱えている部分の1つは、CSVデータを含む文字列をExcelで開くことです。

これをどのように達成しようとしても、結果のExcelドキュメントには、提供したテキストではなくWebサイトのコンテンツが含まれています。

補足として、私は現在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テキストではなくWebサイトのコンテンツが含まれています。

<!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

答えは、PCを再起動することです。はい、それ以上のコード変更なしで現在機能しています。これを正しく機能させるために長い時間を費やしたなんて信じられません。

助けてくれてありがとう、ティム。

于 2012-11-26T14:19:22.623 に答える