ASP Programming | ASP Web Pro
  Active Server Pages Programming by ASP Web Pro

JavaScripts

PRINT THIS PAGE

There are a lot of websites that contain information that users want to print. If you have a page that is printer friendly, why not include a print button or link for the user. Just paste the below code into your page where you want your print option to appear.

<HTML><HEAD>
<TITLE>ASP Web Pro</TITLE>
</HEAD>

<BODY>
<SCRIPT LANGUAGE="JavaScript">

// This small script displays a Print button
<FORM>
<input type="button" value="Print" Onclick="print()" ;>
</FORM>

// This small script displays a Print link
<a href="javascript:print()">Print</a>
</SCRIPT>

</BODY>
</HTML>

< Back to JavaScripts


 

 

Main Menu
Home
ASP Scripts
ASP Tutorials
JavaScripts
Awards
Contact Us

Email This Page

Other Resources
ASP Web Hosting
Search Engine Submission
Programming Help

 

 

 

Other ASP Web Sites

Site Map

 

Last Updated:
21 March 2010