Click here to Skip to main content
15,881,757 members
Articles / Web Development / ASP.NET
Tip/Trick

Custom Print Functionality for Microsoft Report Viewer (RDLC)

Rate me:
Please Sign up or sign in to vote.
4.83/5 (8 votes)
1 May 2012CPOL1 min read 124.3K   5.6K   17   29
This tip describes how to create your own printing functionality rather than using built in print functionality on Microsoft Report Viewer.

Introduction

The following tip will guide you to create a custom printing functionality to print RDLC report rather than using the built in ActiveX print functionality.

Background

There is a major problem in print button on Microsoft Report Viewer. Once you deploy a web application, Client needs to install the ActiveX on their PC in order to print the report. It is said that installing ActiveX is not a secure practice on secured environment. The worst part is when the server/client is on automatic update, there is a security patch which disables the printing functionality completely.

Read more about ActiveX Kill Bits here.

Because of the above reasons, it is wise to have your own printing functionality rather than using the built-in one.

Using the Code

You need to download the third party component called iTextSharp.dll.

You need to export the report to PDF, then print using iTextSharp. Also client needs to install the PDF reader as well.

  1. Create hidden iFrame as follows:
    HTML
    <iframe id="frmPrint" name="IframeName" width="500" 
      height="200" runat="server" 
      style="display: none" runat="server"></iframe>
  2. Add an ASP.NET button:
    HTML
    <asp:ImageButton ID="btnPrint" runat="server" OnClick="btnPrint_Click"  />
  3. Add the following references:
    C#
    using iTextSharp.text.pdf;
    using iTextSharp.text;
    using System.IO;
  4. Add the following code to button click event:
    C#
    Warning[] warnings;              
    string[] streamids;
    string mimeType;
    string encoding;
    string extension;
    
    byte[] bytes = View.ReportViewer.LocalReport.Render("PDF", null, out mimeType, 
                   out encoding, out extension, out streamids, out warnings);
                
    FileStream fs = new FileStream(HttpContext.Current.Server.MapPath("output.pdf"), 
    FileMode.Create);
    fs.Write(bytes, 0, bytes.Length);
    fs.Close();
    
    //Open existing PDF
    Document document = new Document(PageSize.LETTER);
    PdfReader reader = new PdfReader(HttpContext.Current.Server.MapPath("output.pdf"));
    //Getting a instance of new PDF writer
    PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(
       HttpContext.Current.Server.MapPath("Print.pdf"), FileMode.Create));
    document.Open();
    PdfContentByte cb = writer.DirectContent;
    
    int i = 0;
    int p = 0;
    int n = reader.NumberOfPages;
    Rectangle psize = reader.GetPageSize(1);
     
    float width = psize.Width;             
    float height = psize.Height;
    
    //Add Page to new document
    while (i < n)
    {
       document.NewPage();
       p++;
       i++;
    
       PdfImportedPage page1 = writer.GetImportedPage(reader, i);
       cb.AddTemplate(page1, 0, 0);
    }
    
    //Attach javascript to the document
    PdfAction jAction = PdfAction.JavaScript("this.print(true);\r", writer);
    writer.AddJavaScript(jAction);
    document.Close();
                    
    //Attach pdf to the iframe
    frmPrint.Attributes["src"] = "Print.pdf";

Points of Interest

You may need to add read/write permission on the folder where the PDF is created on the server.

History

  • May 01, 2012: Article created

License

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


Written By
Software Developer
Sri Lanka Sri Lanka
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
AnswerRe: print problem Pin
Chamila Nishantha25-Oct-12 21:25
Chamila Nishantha25-Oct-12 21:25 
QuestionCode not working in fire fox Pin
abhis22tr5-Jun-12 0:41
abhis22tr5-Jun-12 0:41 
AnswerRe: Code not working in fire fox Pin
Chamila Nishantha5-Jun-12 18:28
Chamila Nishantha5-Jun-12 18:28 
GeneralRe: Code not working in fire fox Pin
Pratikme31-Mar-14 23:47
Pratikme31-Mar-14 23:47 
GeneralRe: Code not working in fire fox Pin
Member 43117162-Aug-15 20:21
Member 43117162-Aug-15 20:21 
GeneralRe: Code not working in fire fox Pin
Chamila Nishantha3-Aug-15 2:07
Chamila Nishantha3-Aug-15 2:07 
GeneralMy vote of 4 Pin
JP®29-May-12 1:54
JP®29-May-12 1:54 
GeneralRe: My vote of 4 Pin
Chamila Nishantha29-May-12 18:03
Chamila Nishantha29-May-12 18:03 
Thanks.
GeneralThanks Pin
cosmicsoundz2-May-12 9:38
cosmicsoundz2-May-12 9:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.