Question : create PDF with reportviewerr embedded in a web page

I am trying to use report viewer in a web page.  When it comes up, you can select PDF as the exporting format and it will create the PDF.  What I want it to do is create the PDF when it is called.  I have done this in other web pages using the report server and giving the format when I render the report but I can't come up with the format to put in the code.  I am using VS2005 and vb.net.  the following code works and is is what I am currently working with but I need it to create the PDF.  any suggestions would be appreciated
Code Snippet:
1:
2:
3:
4:
ReportViewer1.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote
        ReportViewer1.ServerReport.ReportServerUrl = New Uri("http://209.12.56.155/reportserver")
        ReportViewer1.ServerReport.ReportPath = "/printapps/printallapps"
        ReportViewer1.ServerReport.Refresh()
Open in New Window Select All

Answer : create PDF with reportviewerr embedded in a web page

Look at the ReportViewer1.ServerReport.Render() method. I am not certain that this is what you are looking for given the question but you can use that method to create a pdf and do just about anything with it at that point ie email, save to disk, or display in the browser if you adjust a few other settings.
Random Solutions  
 
programming4us programming4us