Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printing data from an .asp page

Status
Not open for further replies.

sweetleaf

Programmer
Jan 16, 2001
439
CA
Hi there!

I have an asp page with a table and report data which i want users to have the ability to print at the click of a button.
Is this at all possible?

Thanks,
Any help is greatly appreciated!
 
yes it is possible, by simply clicking on the print icon, all the information that is on the page, wether it be asp generated or not is displayed in the printout
 
Add a button to the page:

<input type=&quot;button&quot; name=&quot;print&quot; value=&quot;Print&quot; onClick=&quot;window.print()&quot;>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top