Nov 27, 2003 #1 mikeyd Technical User Joined Jan 28, 2002 Messages 38 Location US Is there a way to print page in asp.net ? Like how javascipt can print page.
Nov 27, 2003 #2 LV Programmer Joined Nov 1, 2000 Messages 1,184 Location US Yes, you can print the page using the same javascript. Just put an html control on the page: Code: <input type=button value="Print" onclick="javascript:window.print()"> Upvote 0 Downvote
Yes, you can print the page using the same javascript. Just put an html control on the page: Code: <input type=button value="Print" onclick="javascript:window.print()">