OceanDesigner
Programmer
The following code opens in the Word applet. I made a change to the content type to get this to open in the PDF applet, but it does not work. What am I missing?
Code:
<%
'BUFFER THE PAGE AND SET TO PDF
Response.Buffer = true
' Response.ContentType = "application/vnd.ms-word"
Response.ContentType = "application/pdf"
%>
<html>
<body>
<table width="626">
<tr><td><b>TEST PDF</b></tr>
</table>
</body>
<%
'FLUSH DATA
Response.Flush
Response.End
%>