将.aspx页面转换为Microsoft Excel页面

时间:2012-04-18 09:33:36

标签: c# asp.net

我希望在我的Web应用程序中使用这样的东西,在按钮上单击.aspx页面在Xls页面中转换。 我做到了,但结果并不好,因为我需要。我在按钮点击时使用了这个代码,如下所示。

        Response.Clear();
        Response.Buffer = true;
        string filename = "TicketSecretary.xlxs";
        Response.AddHeader("Content-Disposition", "attachment; filename=" + filename);
        Response.ContentEncoding = System.Text.Encoding.UTF8;
        Response.ContentType = "application/ms-excel";
        this.EnableViewState = false;

1 个答案:

答案 0 :(得分:1)