Click here to Skip to main content
15,897,187 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
VB
Private Sub ConvertPdf()
    '    Dim oStream As New System.IO.MemoryStream
    '    oStream = objRpt.ExportToStream(ExportFormatType.PortableDocFormat)
    '    Response.ClearContent()
    '    Response.Buffer = True

    '    Response.AddHeader("Content-Disposition", "attachment;filename=PBBFile.pdf")
    '    Response.ContentType = "application/pdf"
    '    'Response.ContentType = "window.open('newpage.aspx', 'application/pdf')"
    '    Response.BinaryWrite(oStream.ToArray())
    '    Response.End()

    '    'Dim sScript As String = "window.open('newpage.aspx', '_blank')"
    '    'ClientScript.RegisterStartupScript(sScript.GetType(), "MyOpener", sScript, True)
    'End Sub
Posted
Comments
Ezra Neil 13-May-13 3:36am    
You may only be missing the dll necessary to generate the report. Install the redistributable and try again.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900