Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/11/2004, 12:42
Avatar de oliver2hd
oliver2hd
 
Fecha de Ingreso: noviembre-2004
Mensajes: 10
Antigüedad: 20 años, 4 meses
Puntos: 0
Hay una opción que lo haces con un java script:

<!-- TWO STEPS TO INSTALL WINDOW PRINT:

1. Copy the coding into the HEAD of your HTML document
2. Add the last code into the BODY of your HTML document -->

<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: CodeLifter.com ([email protected]) -->
<!-- Web Site: http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}
// End -->
</script>

</HEAD>

<!-- STEP TWO: Copy this code into the BODY of your HTML document -->

<BODY>

<a href="javascript:printWindow()">Print This Page</a>

<p><center>
<font face="arial, helvetica" size"-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>

<!-- Script Size: 0.91 KB -->


este código lo pones en tu template.

Y después pones esto al icono de impresión:

<a href="javascript:printWindow()">Print This Page</a>

<p><center>
<font face="arial, helvetica" size"-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>

<!-- Script Size: 0.91 KB -->


Y asi de sencillo lo pedes hacer saludos.