Open PDF in web page of ASP.NET

后端 未结 4 661
梦谈多话
梦谈多话 2021-01-23 01:32

I want to open PDF in ASP.NET aspx page. I dont want to export a pdf file.

Need just write pdf file in ASPX page same as we are writing bytes into Image control.

4条回答
  •  清歌不尽
    2021-01-23 02:01

    to Create PDF-Files you can use a library like pdfsharp http://pdfsharp.com/

    you can easily create PDFs with that. Example Code:

    PdfDocument document = new PdfDocument();
    PdfPage page = document.AddPage();
    ...
    

    and then save it on your Server

    document.Save(filename);
    

    then just link to it via an a-href or in an iframe.

提交回复
热议问题