Export reportviewer as a PDF file

Source: Internet
Author: User
The reportviewer control has the export function, but is not flexible. When you encounter special requirements, you need to write Code For example, batch Export

 

1 Private   Void Converttopdf ( String Strfilename)
2 {
3 Warning [] warnings;
4 String [] Streamids;
5 String Mimetype;
6 String Encoding;
7 String Extension;
8
9 Byte [] Bytes = Reportviewer1.serverreport. Render (
10 " PDF " , Null , Out Mimetype, Out Encoding,
11 Out Extension,
12 Out Streamids, Out Warnings );
13
14 Filestream FS =   New Filestream ( @" C: \ Users \ Zhu \ "   + Strfilename +   " . PDF " ,
15 Filemode. Create );
16 FS. Write (bytes, 0 , Bytes. Length );
17 FS. Close ();
18 }


If the server report is used in row 9th, the report processingmode = processingmode. Remote is used, the reportviewer. serverreport. Render method is used.
If processingmode = processingmode. Local, use the reportviewer. localreport. Render method.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.