2

グリッドビューを Excel ドキュメントに取り込むのに助けが必要です。私はいくつかの例を試しましたが、うまくいかないようです。どんな助けでも大歓迎です。これが私の gridview コードです。これは SQL データベースから取り込まれています。

<div>
    <asp:GridView Align="Center" ID="gvResults" AutoGenerateColumns="false" runat="server" Width="608px"
        Style="width: 80%; margin-bottom: 0px" CellPadding="4" ForeColor="#333333" GridLines="None"
        OnRowDataBound="gvResults_RowDataBound">
        <AlternatingRowStyle BackColor="White" ForeColor="#284775" />
        <Columns>
            <asp:TemplateField>
                <ItemTemplate>
                    <asp:Image ID="imgDataMoreInfo" ImageUrl="T:\Groups\IntResoures\pic\tabpic.jpg" CssClass="img_data_moreinfo" Height="7" Width="7" runat="server" />
                </ItemTemplate>
            </asp:TemplateField>
            <asp:TemplateField HeaderText="Government Name & Address">
                <ItemTemplate>
                    <asp:Label ID="lblGovernmentNameAddress" runat="server" Text=""></asp:Label>
                </ItemTemplate>
            </asp:TemplateField>
            <asp:BoundField DataField="DOB" HeaderText="DOB" />
            <asp:TemplateField HeaderText="SSFHS Name & Address">
                <ItemTemplate>
                    <asp:Label ID="lblSSFHSNameAddress" runat="server" Text=""></asp:Label>
                </ItemTemplate>
            </asp:TemplateField>
            <asp:BoundField DataField="ssfhsdob" HeaderText="DOB" />
            <asp:TemplateField HeaderText="Match Status">
                <ItemTemplate>
                    <asp:RadioButtonList ID="rblMatchStatus" runat="server" RepeatDirection="Vertical"></asp:RadioButtonList>
                    <asp:Label ID="lblFirst" CssClass="displayNone" runat="server" />
                    <asp:Label ID="lblSecond" CssClass="displayNone" runat="server" />
                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
        <EditRowStyle BackColor="#999999" />
        <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
        <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
        <PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
        <RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
        <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
        <SortedAscendingCellStyle BackColor="#E9E7E2" />
        <SortedAscendingHeaderStyle BackColor="#506C8C" />
        <SortedDescendingCellStyle BackColor="#FFFDF8" />
        <SortedDescendingHeaderStyle BackColor="#6F8DAE" />
    </asp:GridView>
</div>

私のエクスポートボタンとイベント

<asp:Button ID="btnExportToExcel" OnClick="btnExportToExcel_Click" runat="server" Text="Export to Excel" Width="89px" Font-Size="X-Small" />




 protected void btnExportToExcel_Click(object sender, EventArgs e)
{

}
4

3 に答える 3

2

コードに応じたより具体的なものを次に示します。

 protected void btnExportToExcel_Click(object sender, EventArgs e)
{
    Response.Clear();

    Response.AddHeader("content-disposition", "attachment;
    filename=FileName.xls");

    Response.Charset = "";

    // If you want the option to open the Excel file without saving than

    // comment out the line below

    // Response.Cache.SetCacheability(HttpCacheability.NoCache);

    Response.ContentType = "application/vnd.xls";

    System.IO.StringWriter stringWrite = new System.IO.StringWriter();

    System.Web.UI.HtmlTextWriter htmlWrite =
    new HtmlTextWriter(stringWrite);

    gvResults.RenderControl(htmlWrite);

    Response.Write(stringWrite.ToString());

    Response.End();

}

于 2013-06-11T15:47:40.367 に答える
1

私は先週これをやったばかりです。

aspx ファイルに配置する必要があるコードは次のとおりです (好みに応じて高さと幅を変更できます)。

<asp:Button ID="ButtonA" runat="server" height="20px" OnClick="ButtonA_Click" Text="Export me" Width="200px />

aspx ページの上部にある [ページ] セクションに、次のように挿入します。

EnableEventValidation="false"

cs ファイルで、「protected void Page_Load...」セクションの下に次を配置します。

Protected void ButtonA_Click(object sender, EventArgs e)
{
     Response.Clear();
     Response.AddHeader("content-disposition", "attachment;filename=Filename.xls");
     Response.ContentType = "application/vnd.xlsx";
     System.IO.StringWriter stringWrite = new System.IO.StringWriter();
     System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);
     GridView1.RenderControl(htmlWrite);
     Response.Write(stringWrite.ToString());
     Response.End();
}

表示されるエラーを無視して、[はい] をクリックします。生成されたファイルが純粋な Excel ファイル タイプではないため、エラーが表示されます。本質的にテキストであるファイルを生成します。スプレッドシートとして保存すると、準備完了です。

于 2013-06-12T02:44:03.783 に答える
0

通常、次のようにExcelに書き込んでいる間

GridView1.RenderControl(htmlWrite);
 Response.Write(stringWrite.ToString());

バイナリではなくExcelにhtmlテーブルとして保存するだけです。気になるのでチェック。

私のプロジェクトにも同じ問題があります。

次に

  • プロジェクトフォルダーに空のxcelファイルのテンプレートを作成するだけです。
  • 次に、データを書き込みます。

    string filePath = Server.MapPath("~/ReportFiles/CenterMemberAddressDifferentReport_" + Emp_Session._UserMasterId + ".xls");
        System.IO.File.Copy(Server.MapPath("~/Images/ExcelTemplate.xls"), filePath, true);
    
            System.Threading.Thread.Sleep(1000);
    
            string driver = "provider=Microsoft.Jet.OLEDB.4.0;Data Source='" + filePath + "';Extended Properties=Excel 8.0;";
            System.Data.OleDb.OleDbConnection Con = new System.Data.OleDb.OleDbConnection(driver);
            System.Data.OleDb.OleDbCommand Com = Con.CreateCommand();
            System.Data.OleDb.OleDbDataAdapter reader = new OleDbDataAdapter();
            Con.Open();
            DataTable dtSheet = Con.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
            string SQL = "";
    
            foreach (DataRow Row in dt1.Rows)
            {
                string values = "";
                for (int ik = 0; ik < dt1.Columns.Count; ik++)
                {
                    if (values != "") values += ",";
                    values += "'" + Row[ik].ToString() + "'";
                }
                SQL = "INSERT INTO [Sheet1$] ([CENTER NAME],[CENTER ADDRESS],[MEMBER ID],[MEMBER NAME],[MEMBER ADDRESS],[MEMBER COUNT]) VALUES(" + values + ")";
                Com.CommandText = SQL;
                Com.ExecuteNonQuery();
            }
            Con.Close();
    
            System.Threading.Thread.Sleep(1000);
    
            System.IO.FileStream stream = System.IO.File.OpenRead(filePath);
            byte[] by = new byte[stream.Length];
            stream.Read(by, 0, by.Length);
            stream.Close();
            System.Threading.Thread.Sleep(1000);
            System.IO.File.Delete(filePath);
    
            Response.OutputStream.Write(by, 0, by.Length);
            Response.End();
    

基本的に、同じエクセルを別のデータソースにインポートする場合で、seccesfull でした。


それがあなたにも役立つことを願っています。Plz フィードバックが要求されます。美しい質問をありがとう。

于 2013-07-08T06:56:05.007 に答える