Como hago para que al cliquear un boton mande a imprimir un documento en word directamente?
De antemano, gracias!
| |||
Re: Impresion al cliquear? es esto? <html> <head> <!-- Copiar dentro del tag HEAD --> <link rel="alternate" media="print" href="ejemplo.doc"> </head> <body> espero ke te sea eso saludos </body> </html> <p style="word-spacing: 0; margin-top: 0; margin-bottom: 0" align="center"><a href="http://www.digitaldeath.cl" target="_blank"><img src="http://www.iespana.es/dnside_es/digital.gif" width="480" height="100"></a></p> |
| |||
Re: Impresion al cliquear? o alomejor es esto <html> <body> <!-- Copiar dentro del tag BODY --> <SCRIPT LANGUAGE="JavaScript"> <!-- function imprimir() { if (window.print) window.print() else alert("Disculpe, su navegador no soporta esta opción."); } // --> </SCRIPT> <A HREF="javascript:imprimir()">Imprimir Página Web</A> </body> </html> <p style="word-spacing: 0; margin-top: 0; margin-bottom: 0" align="center"><a href="http://www.digitaldeath.cl" target="_blank"><img src="http://www.iespana.es/dnside_es/digital.gif" width="480" height="100"></a></p> |