我想用c#form application下载exe文件。但它只下载了15kb的exe部分:
WebClient wc = new WebClient();
wc.DownloadFile("http://www.inndir.com/Bandizip-50255i.html", "myfile.exe");
答案 0 :(得分:0)
您应该在配置文件中设置它:
<system.web>
<httpRuntime maxRequestLength="1024"/>
以上将大小限制为1MB,但您可以在那里设置另一个值。