When I open a page I need it then to automatically open a PDF file hows this done. Its probably dead simple but I just cannot get it to work:(
Printable View
When I open a page I need it then to automatically open a PDF file hows this done. Its probably dead simple but I just cannot get it to work:(
Here is some HTML to do this: (this is taken from an ASP page that does exactly what you want, except I left out some select case statments that determine the file name being assigned to SRC.
The client will need to have ADOBE loaded on their machineCode:
<HTML>
<FRAMESET ROWS="100%, *" COLS="100%, *" FRAMEBORDER="0" BORDER="0" FRAMESPACING="0">
<FRAME FRAMEBORDER="0" BORDER="0" FRAMESPACING="0" SRC="/PDFFiles/.pdf" NORESIZE MARGINHEIGHT="10" MARGINWIDTH="10">
</FRAMESET>
</HTML>