4.8.1.0

  1: workbook.Save(System.IO.Path.GetFileName(path), FileFormatType.Default, SaveType.OpenInExcel, HttpContext.Current.Response);

 

5.3.1.0

  1: workbook.Save(HttpContext.Current.Response, System.IO.Path.GetFileName(path), ContentDisposition.Attachment, new XlsSaveOptions(SaveFormat.Excel97To2003));

 

总结:

  1. 参数顺序变化了,HttpResponse (5.3.1.0) 作为了第一个参数,(4.8.1.0) 却在最后一个。
  2. SaveType枚举参数被ContentDisposition枚举取代。
  3. FileFormatType枚举参数被XlsSaveOptions实例对象取代。

 

破解版本

相关文章:

  • 2021-10-21
  • 2022-12-23
  • 2021-12-23
  • 2021-05-08
  • 2022-12-23
  • 2022-12-23
  • 2021-10-21
  • 2022-12-23
猜你喜欢
  • 2021-04-18
  • 2021-11-26
  • 2021-08-05
  • 2021-05-05
  • 2022-02-03
  • 2022-12-23
  • 2021-11-19
相关资源
相似解决方案