先看看实现效果
简单描述一下实现过程:
1. 生成报表,返回报表文件路径
$.post 请求一般处理文件ashx ,通过npoi生成对应的excel文件。生成成功后,返回文件保存的完整路径
2. location.href 指定在aspx也中打开excel文件
var filePath = data.Message;
location.href = "../../***/html/downloadExcel.aspx?filePath=" + data.Message;