Click here to Skip to main content
15,880,469 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.7K   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

 
QuestionContents cut from top of the page Pin
Member 1344440016-Jul-18 22:10
Member 1344440016-Jul-18 22:10 
QuestionNice! Thank you! Pin
Ignacioooooo17-Aug-17 3:33
Ignacioooooo17-Aug-17 3:33 
QuestionImages Print Pin
Member 9354253-Nov-15 3:09
Member 9354253-Nov-15 3:09 
Questionlanguage change Pin
Member 1130732922-Dec-14 20:23
Member 1130732922-Dec-14 20:23 
Questionplease help Pin
Member 1130732915-Dec-14 0:37
Member 1130732915-Dec-14 0:37 
QuestionError on Custom Print Pin
Member 1101475119-Sep-14 0:04
Member 1101475119-Sep-14 0:04 
AnswerRe: Error on Custom Print Pin
Chamila Nishantha19-Sep-14 16:12
Chamila Nishantha19-Sep-14 16:12 
QuestionHow to set the printer orientation? Pin
Nanda Kumar ps14-Aug-14 6:35
Nanda Kumar ps14-Aug-14 6:35 
QuestionFind Answer Pin
sushilsharma997-Nov-13 2:16
sushilsharma997-Nov-13 2:16 
QuestionMy vote of 5 stars Pin
Carlo Ingrassia6-Nov-13 21:03
Carlo Ingrassia6-Nov-13 21:03 
Questionarbaic letters printed boxess Pin
mah2eng26-Sep-13 9:05
mah2eng26-Sep-13 9:05 
Questionarbicletter printed boxes Pin
mah2eng26-Sep-13 9:02
mah2eng26-Sep-13 9:02 
QuestionError Pin
Bhavika Shah23-Jul-13 20:29
Bhavika Shah23-Jul-13 20:29 
AnswerRe: Error Pin
Chamila Nishantha23-Jul-13 21:40
Chamila Nishantha23-Jul-13 21:40 
GeneralRe: Error Pin
Bhavika Shah24-Jul-13 0:24
Bhavika Shah24-Jul-13 0:24 
GeneralRe: Error Pin
Chamila Nishantha25-Jul-13 15:44
Chamila Nishantha25-Jul-13 15:44 
GeneralRe: Error Pin
MURALIBALA199126-Jan-14 22:05
MURALIBALA199126-Jan-14 22:05 
AnswerRe: Error Pin
Member 1130732925-Dec-14 19:14
Member 1130732925-Dec-14 19:14 
GeneralMy vote of 5 Pin
ankurrajput24-Jan-13 0:44
ankurrajput24-Jan-13 0:44 
Questionprint problem Pin
pratik chavan25-Oct-12 21:14
pratik chavan25-Oct-12 21:14 
AnswerRe: print problem Pin
Chamila Nishantha25-Oct-12 21:25
Chamila Nishantha25-Oct-12 21:25 
Check that you have given write permission to the folder.
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 

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.