Click here to Skip to main content
15,885,856 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want print panal details direct to printer without print dialog control display from .aspx page...please help me....thank you in advance
Posted
Updated 7-Dec-12 1:51am
v2

1 solution

Hi,

Try printing it with javascript like,

XML
<asp:button id="btnPrint" runat="server" text="Print" onclientclick="javascript:window.print();" xmlns:asp="#unknown" />



This will print the window.

If you want to print data in a div ,pass the div id to a function like,strid.
Then the following code prints the content in div.

C#
var prtContent = document.getElementById(strid);
              var WinPrint = window.open('', '', 'letf=0,top=0,width=1000,height=600,toolbar=0,scrollbars=0,status=0');
              WinPrint.document.write(prtContent.innerHTML);
              WinPrint.document.close();
              WinPrint.focus();
              WinPrint.print();
              WinPrint.close();



Hope this helps.
 
Share this answer
 
Comments
Kishor Mali 8-Dec-12 0:58am    
that code also opens the print dialog control.......I want direct print without print dialog control?

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900