![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
04/07/2002, 12:44
|
![Avatar de CORE](http://static.forosdelweb.com/customavatars/avatar18325_1.gif) | Usuario no validado | | Fecha de Ingreso: abril-2002 Ubicación: Merida
Mensajes: 2.165
Antigüedad: 22 años, 10 meses Puntos: 3 | |
Re: imprimir una pagina <html>
<head>
<!-- Copiar dentro del tag HEAD -->
<link rel="alternate" media="print" href="ejemplo.doc">
</head>
<body>
</body>
</html>
o
<SCRIPT LANGUAGE="JavaScript">
<!--
function imprimir() {
if (window.print)
window.print()
else
alert("Disculpe, su navegador no soporta esta opción.");
}
// -->
</SCRIPT> |