Open PDF in web page of ASP.NET

后端 未结 4 803
梦谈多话
梦谈多话 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 01:58

    Try below code: Here FullPath is full path of file with file name

    Dim f1 As New FileStream(FullPath, FileMode.Open)
    Dim m1(f1.Length) As Byte
    f1.Read(m1, 0, f1.Length)
    f1.Close()
    File.Delete(FullPath)
    Response.ClearHeaders()
    Response.ContentType = "application/pdf"
    Response.Clear()
    Response.OutputStream.Write(m1, 0, m1.GetLength(0))
    

提交回复
热议问题