asp.net - Generate Powerpoint file on the fly

前端 未结 6 1282
北荒
北荒 2021-02-20 10:11

I have a client of my web based application who heavily uses the data from our system for powerpoint presentations.

We currently allow data to export in more traditional

6条回答
  •  情书的邮戳
    2021-02-20 10:42

    In regards to the previous poster, your statement is incorrect.

    You really only have one option for server side ASP.NET automation of this process. Use the open xml links mentioned by Ben in the original answer...

    Manipulating Excel 2007 and PowerPoint 2007 Files with the Open XML Format API (Part 1 of 2) Manipulating Excel 2007 and PowerPoint 2007 Files with the Open XML Format API (Part 2 of 2)

    The reason for this is that server side automation of office is completely unsupported and is bad coding practise, running com automation servers that are designed for interactive usage in a non-interactive environment is a potential recipe for disaster.

    so in summary use the open xml api and generate your pptx's.

提交回复
热议问题