请问一下,有没有什么方式不用透过其他元件产生Excel档案呢?
(NPOI、EPPLUS、Excel元件...等都算。)
我想将DataSet转成Excel的功能写成WebService
DataSet可以转为Excel XML。像是...
context.Response.ContentType = "application/vnd.ms-excel";
context.Response.AppendHeader("Content-Disposition","attachment; filename=export.xlsx");
HttpContext.Current.ApplicationInstance.CompleteRequest();
但是,遇到问题是使用Response会跳出储存的视窗。
有没有办法是可以直接将Excel存在Server端的某个资料夹呢?
谢谢各位前辈