Thought I would pose this to the StackOverflow crowd since I've run out of ideas.
I have a request from users that once a button is clicked, a PDF form is generated which they would like to automatically view, and once they close the PDF the page will already be a "Final page", not the page they clicked the button from.
In my pre-final page with the button, the controller calls:
return File(finalForm, "application/pdf", Server.HtmlEncode(finalForm));
But this has now passed the control to the client, I can't route to a different View.
Any clever ideas on how I can also display a new view?