Import A .pdf file

  • Thread starter Thread starter anon
  • Start date Start date
A

anon

I have an application that I created in Microsoft Publisher and then
converted to a .pdf file. I want to import the .pdf file to a web page so
that people can print off the application, complete it and then fax it back
to me. How do I import the .pdf file?
 
Can you give me just a tad more detail, I'm a novice that this whole thing?
I also use Frontage 2002. A little more help please?

Thank you,
 
Import your .pdf file into whatever directory you want it. Create a
hyperlink to the .pdf file. (Because I work on my site live, I do a copy and
paste into the directory and that works. I'm not sure if it does for
everyone tho.)
 
In FP File Import and browse to the PDF file
The drag the .pdf from Folder List to your page to create a link to it

--




| Can you give me just a tad more detail, I'm a novice that this whole thing?
| I also use Frontage 2002. A little more help please?
|
| Thank you,
|
|
| | > just link to it, with a <a href> tag.
| >
| > | > > I have an application that I created in Microsoft Publisher and then
| > > converted to a .pdf file. I want to import the .pdf file to a web page
| so
| > > that people can print off the application, complete it and then fax it
| back
| > > to me. How do I import the .pdf file?
| > >
| > >
| > >
| > >
| >
| >
|
|
 
anon said:
I have an application that I created in Microsoft Publisher and then
converted to a .pdf file. I want to import the .pdf file to a web page so
that people can print off the application, complete it and then fax it back
to me. How do I import the .pdf file?


If you want the PDF to appear in the page create an object tag in your HTML
code similar to the code below... just replace "brochure.pdf" with the name
of your file:

<object classid="clsid:CA8A9780-280D-11CF-A24D-444553540000"
id="Pdf1"
left="0"
width="100%"
height="100%"
style="border-style: none; border-width: 0; padding: 0">
<param name="SRC" value="brochure.pdf">
</object>
 
The Object (ActiveX) tag is not supported in NS browsers.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Thomas A. Rowe said:
The Object (ActiveX) tag is not supported in NS browsers.


Oops... that's right. I believe you can do an embed tag though...
 
----- Dwayne Conyers wrote: -----


Thomas A. Rowe said:
The Object (ActiveX) tag is not supported in NS browsers.


Oops... that's right. I believe you can do an embed tag though...
 
You are better off, just link to the document, instead of trying to have the
document open directly within the user's browser window, which is what the
Object tag and embed tag would do. As it may not work for user viewing the
site on different platform or other browser, etc.


==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top