I am using .NET4 MVC3 VS2010. We are using ABCpdf to convert html to pdf and stream it to the browser. The problem is that I need to figure out a way for the pdf be opened in a new window or tab. I have read a bunch of posts on similar issue, but could find nothing to help with this specific case. Upon clicking a button (not a link) on a page, a controller action takes care of creating a memory stream from the html for that very page and then converts it to pdf and sends it to the browser.
Code in the view for that page: var pdfUrl = String.Format("window.location.href = '{0}';", Html.BuildUrlFromExpressionForAreas(c => c.GeneratePdf(myUrl))); } @(Html.Button("btnPdf", "Generate PDF", HtmlButtonType.Button, pdfUrl)))
Code in MyController action: public ActionResult GeneratePdf(string url) Doc pdfDoc = new Doc(); int docId; MemoryStream outputStream = new MemoryStream();
and a bunch of other code for pdf conversion..... then: byte[] pdfData = pdfDoc.GetData(); outputStream.Write(pdfData, 0, pdfData.Length); outputStream.Position = 0; return new FileStreamResult(outputStream, "application/pdf"); }
It works fine but the pdf is displayed in the same window/tab. How can I stream the data to a new window or tab in the browser? I am a newbee and would appreciate detailed help. target property does not work for this case. I could not work window.open into the view code for the button and I am not sure that would do the trick either. Thanks in advance