c# - Display PDF from a stream in a WebBrowser control -
How do I show a PDF document from a MemoryStream
to a WebBrowser
Can i > Control?
I searched around and found that I can navigate just by using a PDF file:
webBrowser1.Navigate (@ "C: \ Temp \ ExportedPDF PDF ");
However I do not want to save the file anywhere, but I am currently leaning to using IsolatedStorage
because I can not find any other way Stream in browser control.
Comments
Post a Comment