I need to know how to perform file downloads from a
website application written in ASP.NET (Visual
Basic .NET). Specifically, I want to be to have a
website visitor click a button and a file (stored on the
webserver or any other server-side location) download
would automatically take place. I need the ability to
specify where the file is stored on the web client's
machine, and I do not want the client to be able to alter
the path location or file name. I also need this to be
done in a secure manner (SSL).
Here is a high-level code example of what I envision:
..onClick_submit()
TransferFile
("\\ServerSide\Location\File.DAT", "C:\ClientSide\LocalFil
eSystem\MyFile.TXT")
End Sub
Thank You,
Nik Kammerer