Downloading files using httprequest
问题 Is it possible to download files from a website using httprequest? I am only used to using it to get source code of a page. If there is no way to do it using httprequest, is there a way to download files using C# without having to use the webbrowser? Edit: The answer must allow me to chose the location on the hard drive where the file will be downloaded to 回答1: You can absolutely use HttpRequest by getting the WebResponse and using its response stream. Alternatively, use WebClient , with its