I need to write an asp.net application for use on our intranet. The user should be able to download a given large csv file from a file server using a web page. There are two reasons for using a web application for that - we want control and log the file loading, and also some of the users who will be loading the files use Macs, so I can not develop a win form application for them.
I would like to provide my users with a nice "Download File" button just like Microsoft or DownLoad.CNet do when I go there to download some software.
When I looked for javascript code samples, they all require me to provide a full destination file name, but in case of Apple computers, I do not know what the download path will be.
I also understand that I can just provide a link for download, but I would like to store the original files on a file server, not inside the web site, and I keep getting into permission problems when I specify file:// in href.
Could anyone please explain how this can be done?
Thank you.