views:

35

answers:

2

How to create a downloadable link in a website.

A: 

just give the link alone.

<a href="give the url from where you can download" >Download Link</a>
anishmarokey
A: 

just link to the file.

<a href="yourfile.zip" >download</a>

if it#s a image and you wnat to force the browser to interprete it as download add a http-header with asp like "Content-Disposition: attachment; filename="yourimg.jpg"

helle