Donate SIGN UP

downloading file from website

Avatar Image
MikeFahey | 12:38 Tue 22nd Mar 2005 | Technology
3 Answers

What is the easiest procedure for loading PDF. or other .DOC files into/onto ones own website and making easily downloadable by users of that website. To have them in dropdown menu logical or directory format would be even better. Thanks in advance.

Gravatar

Answers

1 to 3 of 3rss feed

Best Answer

No best answer has yet been selected by MikeFahey. Once a best answer has been selected, it will be shown here.

For more on marking an answer as the "Best Answer", please visit our FAQ.
Simply uplaod them as normal and link to them using href's as per usual and internet explorer will do the rest, just treat it like linking to an HTML page.

Hope this helps, if you need an expanded explanation let me know
Question Author

Thanks for replying so promptly, an expanded answer would be really appreciated if it's got to be written in code I might struggle but if there is a utility that woiuld be great

Thanks again

It all depends on what program your using to create your html pages:

Dreamweaver:
Copy the "doc" or "pdf" file you want to use into your site directory
Open the html page you wish to link to the documents from, select the text or image you wish to use as the link
Link to the selected file as you would if it were another html file
Close upload and test

HTML:
<html>
<head>
<title>Test Page</title>
</head>
<body>
<a target='_blank' href="test.pdf">link text </a>
</body>

hope this helps;

nathan:
</html>

1 to 3 of 3rss feed

Do you know the answer?

downloading file from website

Answer Question >>