如何使用chrome通過mvc將.xlsx文件導出爲excel。它適用於.xls的但不是原來的.xlsx導出到Excel .xlsx文件
Response.ClearContent();
Response.AddHeader("content-disposition", "attachment; filename= Estimate1.xlsx");
Response.ContentType = "application/excel";
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
Response.Write(sw.ToString());
Response.End();
看看http://epplus.codeplex.com/ – user287107
我們在我們的一個項目中使用EPPlus,它的效果很好。 –
我還使用它,它的偉大工程有時也功能也一點點有限的,例如所有圖表選項都不可用,或者如果寫入超過1000000行,它不會返回錯誤。另外有時數字寫錯了方式,Excel然後抱怨破損的xls文件 – user287107