Click to See Complete Forum and Search --> : Print AND Link??
Spritshade
01-03-2006, 10:04 AM
Is there a code that can let me make one button that will print the current page AND link to the next page of a site? I need to put forms of a site that the viewer must print before they can continue. Thanks for the help
Hi -
I had to use something like this recently:
<!-- In head section-->
<link rel="stylesheet" type="text/css" media="print" href="print.css">
<!-- In body-->
<a href="contact.html" onclick="window.print(); return true;">Print this Form</a>
<form name="order" action="" method="post">
<input type="hidden" name="return" value="../success.html">
Good luck,
El
Spritshade
01-04-2006, 08:48 AM
Thanks, that worked perfectly
Spritshade
01-05-2006, 11:48 AM
According to my boss, this is not enough :-/, Is there a way to make it so the person visiting the site can not move on to the next page unless they print out the current form?
felgall
01-05-2006, 02:52 PM
No there isn't.