Open PDF in web page of ASP.NET

后端 未结 4 658
梦谈多话
梦谈多话 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:08

    I got the answer , it is too simple.

    I have answered here.

    Response.Clear();
    string filePath = "myfile.pdf";
    Response.contentType = "application/pdf";
    Response.WriteFile(filePath);
    Response.End();
    

提交回复
热议问题