Rank: Member Groups: Member
Joined: 2/26/2009 Posts: 21
|
We use EO.Total 2025. We need to convert a mvc page to pdf. It just take over 3 minutes to produce. Is there a method that I can reduce the convert time? Thank you very much!
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,345
|
Hi,
Sorry about the delay replying. There is no way to speed it up since the root of the problem is the size of the contents. For such long conversion, we would recommend you to design it as a background task instead of using MVCToPDF. The benefit of MVCToPDF is you can render what the end user sees on the screen with very minimum code. However it is both unpractical and unnecessary for the end user to "see" a 350 page documents on the screen. So you might want to re-design your application as generating a temporary HTML file and then call the converter on that file on the background instead.
Thanks!
|