
21/01/2002, 09:22
|
| | Fecha de Ingreso: agosto-2001
Mensajes: 399
Antigüedad: 23 años, 8 meses Puntos: 0 | |
Re: crear fichero word Hola, prueba con esto:
1.- Ejecuta el código HTML o ASP entre las siguientes líneas:
<%response.buffer=true %>
<%
' inicializa el word
Response.ContentType = "application/vnd.ms-word"
' agrega a la cabecera el nombre del documento
response.AddHeader "content-disposition", "inline; filename=orden.rtf"%>
%>
<html>
....
(tu html)
....
</body>
</html>
<%response.flush
response.end%> |