Downloading a File
I've got a job where the client would like to be able to download documents - Word, Excel, PowerPoint. The problem is that if I just point the browser to one of these files (sitting on an http server), the file will open in a browser window. Instead, I want to display a "Save As" dialog box which will allow the user to download the file to a directory.
Can this be done with ASP.NET 2.0? In looking through the .NET help, I see there's a WebRequestMethods class, but I have no idea if this is part of the solution.
|