I've got a web service that requires data to be posted via a POST method using JSON format in order to request a specific document (.pdf).
The document will need to be stream down and opened in the browser but I would like to open a new browser to display the document?
Can this be achieved without using a query string and GET method? To recap, is there a way to open a new browser and post data to the URL the same way you would if you just clicked on a button on a page?
I'm using JQuery to post my data but a solution in either HTML5 or ASP.NET would be good.
Thanks