ASP.net: Display PDF in a asp.net web page

asp.net

User click on a link button and it will direct them to a url that is dynmaically generated which a pdf file. The browser will prompt the user to either save or open it.

I want to know if it is possible to downlaod the pdf file to the server then show the pdf file in the asp.net web page. When i google on this question, 99% of top link are some third party component. Is it a way to do this without purchase any 3rd party component?

thank

Best Answer

I use itextsharp, its a free open source c# port of the java itext library.

Makes generating dynamic pdfs in asp.net a breeze and there is lots of documentation/examples floating around.

Related Topic