我希望在我的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;
答案 0 :(得分:1)
我最后错过了Response.End();
。
http://msdn.microsoft.com/en-us/library/system.web.httpresponse.end.aspx