.net下, easyUI datagrid 导出生成EXECL?高分求救ing......
.net下,easyUI datagrid 导出生成EXECL ?高分求救ing......
------解决方案--------------------将条件发到到动态页,动态页获取条件取出数据组合成table格式的html代码,然后设置响应头如下,再输出组合成的table格式的html代码就能保存为excel文件了,或者导出csv文件也可以用excel打开。。
string html="";
//.....
Response.ContentType = application/vnd.ms-excel";
Response.AppendHeader("Content-Disposition", "attachment;filename=xxx.xsl");
Response.Write(html);
------解决方案--------------------使用插件npoi