I am receiving a byte[]
which contains a PDF.
I need to take the byte[]
and display the PDF in the browser.
I have found similar questions like this - How to return PDF to browser in MVC?.
But, it opens the PDF in a PDF viewer, also I am getting an error saying the file couldn't be opened because it's - "not a supported file type or because the file has been damaged".
How can I open the PDF in the browser? My code so far looks like the following -
public ActionResult DisplayPDF()
{
byte[] byteArray = GetPdfFromDB();
Stream stream = new MemoryStream(byteArray);
stream.Flush();
stream.Position = 0;
return File(stream, "application/pdf", "Labels.pdf");
}