0

在网站上查看 ASPX 时,我得到一个表格,单元格中的文本很少,例如:

tab.Rows[1].Cells[1].innerHtml = "Booked :"

(在很多行和单元格中,但每个单元格中的文本不同)

现在我只想单击一个按钮,表格中的数据将被下载到 Excel 文件中。

表 ID:选项卡

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        //Table tbl = new Table();
        TableRow tr = new TableRow();
        TableCell tcel = new TableCell();
        tcel.Text = "id";
        tr.Cells.Add(tcel);

        TableCell tcel1 = new TableCell();
        tcel1.Text = "id1";
        tr.Cells.Add(tcel1);

        tab.Rows.Add(tr);
    }
}
protected void Button1_Click(object sender, EventArgs e)
{
    string filename = "ExportExcel.xls";
    System.IO.StringWriter tw = new System.IO.StringWriter();
    System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);

    //DataGrid dgGrid = new DataGrid();
    //dgGrid.DataSource = tbl;
    //dgGrid.DataBind();

    //Get the HTML for the control.             
    tab.RenderControl(hw);
    //Write the HTML back to the browser.
    //Response.ContentType = application/vnd.ms-excel;
    Response.ContentType = "application/vnd.ms-excel";
    Response.AppendHeader("Content-Disposition", "attachment; filename=" + filename + "");
    this.EnableViewState = false;
    Response.Write(tw.ToString());
    Response.End();
}

修改了 watraplion 答案,但仍然没有回答.. 错误:

DataTable dt = dt; //Use of unassigned local variable 'dt'
4

2 回答 2

1

尝试这个 :

aspx 设计视图:

<body>
   <form id="form1" runat="server">
      <div>
          <asp:Table ID="Table1" runat="server">
           </asp:Table>
      </div>
      <div>
           <asp:Button ID="btnExport" onclick="btnExport_Click" Text="Export" runat="server">
      </div>
   </form>
</body>

aspx.cs(后面的代码)

    protected void Page_Load(object sender, EventArgs e)
    {
        TableRow tr = new TableRow();
        TableCell tcel = new TableCell();
        tcel.Text = "id";
        tr.Cells.Add(tcel);

        TableCell tcel1 = new TableCell();
        tcel1.Text = "id1";
        tr.Cells.Add(tcel1);

        Table1.Rows.Add(tr);
    }

    protected void btn_Click(object sender, EventArgs e)
    {
        string filename = "ExportExcel.xls";
        System.IO.StringWriter tw = new System.IO.StringWriter();
        System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);

        //Get the HTML for the control.             
        Table1.RenderControl(hw);
        //Write the HTML back to the browser.
        //Response.ContentType = application/vnd.ms-excel;
        Response.ContentType = "application/vnd.ms-excel";
        Response.AppendHeader("Content-Disposition", "attachment; filename=" + filename + "");
        this.EnableViewState = false;
        Response.Write(tw.ToString());
        Response.End();
     }
于 2013-05-21T07:59:34.957 回答
0

首先要说的是,您要做的不是导出到 excel,而是发送带有错误标题的 html 以欺骗浏览器以使用 excel 打开此内容。

这个解决方案有很多问题,excel它自己会警告用户内容与扩展名不同,因为你发送html并且你的响应头说这是一个excel文件。而且我敢打赌,客户端上的某些反恶意软件或服务器上的类似软件会阻止此响应,因为提供与标头中声明的内容不同的内容是已知的恶意软件行为。

使用专用 excel 库(例如EPPlus )会更好、更容易,请在此处查找将 DataTable 导出到真实 excel 文件的 ASP.NET ashx 处理程序:

https://stackoverflow.com/a/9569827/351383

于 2013-05-21T09:57:46.200 回答