In an ASP.NET MVC application, I have an action () page that displays a page (like a wiki page).
Now I have another RenderPdf () action that should collect the HTML () output and use the HTML2PDF component to create a PDF version of this page.
How do I compile the HTML result of one action in another action. Note: not in the view, but in the action code directly.
source
share