Ver Mensaje Individual
  #31 (permalink)  
Antiguo 10/11/2004, 11:11
danmart
 
Fecha de Ingreso: agosto-2003
Mensajes: 50
Antigüedad: 20 años, 8 meses
Puntos: 0
Pues si genero el archivo prueba.asp con el siguiente contenido me sale la parrafada que Lexus ha puesto anteriormente:
<!-- archivo prueba.asp -->
<html>
<body>
<%@language=vbscript%>
<!--#include file="fpdf.asp"-->
<%

Set pdf=CreateJsObject("FPDF")
pdf.CreatePDF()
pdf.SetPath("fpdf/")
pdf.SetFont "Arial","",16
pdf.Open()
pdf.AddPage()
pdf.Cell 40,10,"Hello Word!"
pdf.Close()
pdf.Output()
%>
</body>
</html>