Excel Documents

DJ Stephen

Fully Optimized
Messages
3,275
In HTML is there a way that i can setup it up so someone can download a file? I need the code to do this.
Thanks in advabnce.
 
yes, you just use a simple anchor link...

<a href="/bin/link.exe">click here to download</a>
 
That'll do it, depending on the file type.

If it's a filetype the browser can display within itself without downloading e.g. .doc file, then it'll appear in the browser window.

Else, the download file dialogue box will appear, and the user can select the download options they want.
 
I can give you the script which does this if your web server supports ASP. There are many php ones out there too.
 
Back
Top Bottom