Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I get FileResult to open a pdf in a new browser instance? I am returning FileStreamResult from a controller like so:

return new FileStreamResult(new FileStream(path, FileMode.Open), "application/pdf");
share|improve this question

1 Answer

There's no way to do this on the server-side.

You can try to have a pop-up link (which I suggest you don't) that points to your action but even then it's not guaranteed to work.

share|improve this answer
Thanks but was hoping for a better answer; I've got to believe that there's a way to do this; how do I elevate this question again so it gets reviewed or noticed? – Jeff Rubingh Mar 9 '10 at 16:13
@Jeff Rubingh, The site will bump your question from time to time as long as it doesn't have an accepted answer. You can also try editing your question and adding more information to bump it. As for the question, imagine how it would be if browsers allowed all the sites in the world to open new browser instances. So, there's a reason why it's not allowed. – çağdaş Mar 9 '10 at 18:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.