locked
How to Duplex printing in RDLC? RRS feed

  • Question

  • User-1042970710 posted

    Hello Friends,

    I  want to print a ID card via RDLC  the ID contains data on both sides front/back. I am wondering how could I do Duplex printing using RDLC in ASP.NET?

    How to define Area. Any Samples?

    Please help.

    Imran.

    Sunday, October 4, 2015 7:15 AM

Answers

  • User281315223 posted

    Generally this is something that is out of the control of a web application, so it may / may not be possible.

    Usually, it is up to the user to indicate that the contents should be printed in duplex (if the printer itself supports that). However, you may be able to explicitly create a PrintDocument and set the CanDuplex property to true to handle the printing as mentioned in this related MSDN article and  this related discussion:

    YourPrintingDocumentObject.PrinterSettings.CanDuplex = true;

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Sunday, October 4, 2015 12:17 PM