Hi Rino
The easiest way is to put the file onto your site the same way you would any other page, and use a normal <A> link pointing to it.
<a href="files/myprogram.exe">Download my program!</a>
Most browsers will automatically prompt to save or open the file when the link is clicked, but you should also put instructions saying to right click and press "save target as..." etc.
Another way to do it is to use the "Content-Disposition=attachment" header on a page, which is how sites go to a normal web page then automatically prompt you to download the file. However this generally requires programming on the server using something like PHP or ASP.NET.
Also note that a lot of web hosts don't allow you to upload .exe files because of the obvious virus risk, so check their terms of use first.
HTH
Phil
|