I need to allow users to download a file to their machine in my vb.net web app. I need them to browse to the download location themselves through some kind of navigation window.
For uploads I simply use a type="file" :
<input type="file" value="upload />
Is there an equivalent method for downloads?
For downloads you usually create a link:
and in the code behind you stream the file to the response: