Print Function By JavaScript

function PrintContent( Obj)
{
PrintWin=window.open('','PrintWin','directories=no, location=no, menubar=no, resizable=no, status=no, toolbar=no, scrollbars=no, width=10, height=10, left=1050, top=800');
PrintWin.document.write("");
PrintWin.document.write(document.getElementById(Obj.id).outerHTML);
PrintWin.location.reload();
PrintWin.print();
PrintWin.close();
}


/************* Function call ***************/

btnPrint.Attributes.Add( "OnClick", "PrintContent(" + TblPrint.ClientID + ");");

Comments

Popular posts from this blog

Auto Refresh .aspx page - ASP.NET

Auto Sequence Number in Grid Control with Paging

MVC Request Execution Stages - Life Cycle

Paged Data Source - Custom Paging

Overview of MVC

LINQ - C# Programming

ASP.NET MVC Version History

How to Edit More than 200 Rows in SQL Server 2008

LINQ to XML : XElement and XAttribute