SIGN UP MEMBER LOGIN:    
ARTICLE

Printing in ASP.NET

Posted by Rahul Kumar Saxena Articles | ASP.NET Programming August 27, 2009
One of the most common functionality in any ASP.NET application is to print forms and controls. In this article I am going to show how we can achieve this print functionality in our asp.net application.
Reader Level:
 

One of the most common functionality in any ASP.NET application is to print forms and controls.

In this article, I am going to show how can we achieve this print functionality in our asp.net application. For this, I created a PrintHelper class. In this class, I made a method 'PrintWebControl'. With this method we can print any server control alike GridView, DataGrid, Panel, TextBox etc.

This is my PrintHelper.cs


using
System;

using System.Data;

using System.Configuration;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;

using System.IO;

using System.Text;

using System.Web.SessionState;

 

/// <summary>

/// Summary description for PrintHelper

/// </summary>

public class PrintHelper

{

    public PrintHelper()

    {

        //

        // TODO: Add constructor logic here

        //

    }

    public static void PrintWebControl(Control ctrl)

    {

        PrintWebControl(ctrl, string.Empty);

    }

 

    public static void PrintWebControl(Control ctrl, string Script)

    {

        StringWriter stringWrite = new StringWriter();

        System.Web.UI.HtmlTextWriter htmlWrite = new System.Web.UI.HtmlTextWriter(stringWrite);

        if (ctrl is WebControl)

        {

            Unit w = new Unit(100, UnitType.Percentage); ((WebControl)ctrl).Width = w;

        }

        Page pg = new Page();

        pg.EnableEventValidation = false;

        if (Script != string.Empty)

        {

            pg.ClientScript.RegisterStartupScript(pg.GetType(), "PrintJavaScript", Script);

        }

        HtmlForm frm = new HtmlForm();

        pg.Controls.Add(frm);

        frm.Attributes.Add("runat", "server");

        frm.Controls.Add(ctrl);

        pg.DesignerInitialize();

        pg.RenderControl(htmlWrite);

        string strHTML = stringWrite.ToString();

        HttpContext.Current.Response.Clear();

        HttpContext.Current.Response.Write(strHTML);

        HttpContext.Current.Response.Write("<script>window.print();</script>");

        HttpContext.Current.Response.End();

    }

}

 

Here, in this application, I created 2 pages. First is the default page of the content that I want to print.On the same page, I set a Print button also. When it will be clicked, it will redirect the user to the second page, named as 'Print.aspx'.


Default.aspx


<%
@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

    <title>Pring in ASP.NET</title>

</head>

<body>

    <form id="form1" runat="server">

        <div>

            <asp:Button ID="btnPrint" runat="server" Text="Print" OnClick="btnPrint_Click" /><br />

            <asp:Panel ID="pnl1" runat="server">

                <table cellpadding="4" cellspacing="4" width="50%" align="center">

                    <tr>

                        <td align="center">

                            Fill all information

                        </td>

                    </tr>

                    <tr>

                        <td>

                            <asp:Label ID="Label1" runat="server" Text="Email" Width="130px"></asp:Label>

                            <asp:TextBox runat="server"></asp:TextBox>

                        </td>

                    </tr>

                    <tr>

                        <td>

                            <asp:Label ID="Label2" runat="server" Text="Name" Width="130px"></asp:Label>

                            <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>

                        </td>

                    </tr>

                    <tr>

                        <td>

                            <asp:Label ID="Label6" runat="server" Text="Country" Width="130px"></asp:Label>

                            <asp:TextBox ID="TextBox5" runat="server"></asp:TextBox>

                        </td>

                    </tr>

                    <tr>

                        <td>

                            <asp:Label ID="Label3" runat="server" Text="Mobile" Width="130px"></asp:Label>

                            <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>

                        </td>

                    </tr>

                </table>

            </asp:Panel>

        </div>

    </form>

</body>

</html>

PrintImage1.JPG

Image 1.

Click event of 'print' button is:


protected
void btnPrint_Click(object sender, EventArgs e)

    {

        Session["ctrl"] = pnl1;

        ClientScript.RegisterStartupScript(this.GetType(), "onclick", "<script language=javascript>window.open('Print.aspx','PrintMe','height=300px,width=300px,scrollbars=1');</script>");

    }

When, the 'Print' button is clicked,screen will be looking as under in the Image 2

PrintImage2.JPG 

Image 2.

Following is the load event of this page, 'Print.aspx':



protected
void Page_Load(object sender, EventArgs e)

    {

        Control ctrl = (Control)Session["ctrl"];

        PrintHelper.PrintWebControl(ctrl);

    }

 

 

 

Login to add your contents and source code to this article
share this article :
post comment
 

How do i increase the font size while printing

Posted by POOJA SISODIA Jan 27, 2012

Hai Rahul, HOw are you? and nice to see you in here. I am beginner in asp.net with c#. I am happy to copy your code, but this is not working..............

Posted by sundar lakhman Sep 29, 2011

So can this also work for printing using the gridview control?

Posted by Anele Ngqandu Sep 07, 2011

Hey Moron, Stop claiming things as your own. Once an idiot always an idiot. Expertise in copying is more correct.

Posted by John Smith Jun 09, 2011

Hi Rahul, That's a really great article that you took credit for; you stupid Indian. Aren't you breaking the rule of copied contents? Here is the original content written over a year back before you post it as your own. http://www.dotnetcurry.com/ShowArticle.aspx?ID=92 What a retard..

Posted by John Smith Jun 09, 2011
Nevron Gauge for SharePoint
Become a Sponsor
PREMIUM SPONSORS
  • Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites - Click Here!
    Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Become a Sponsor