Nov 27, 2003 #1 mikeyd Technical User Jan 28, 2002 38 US Is there a way to print page in asp.net ? Like how javascipt can print page.
Nov 27, 2003 #2 LV Programmer Nov 1, 2000 1,184 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()">