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