利用XMLHTTP下载文件
和以前的方法一样,先添加引用-COM-Microsoft Xml 3.0,然后在代码开始处写:

using MSXML2;

下面就是主要的代码:

private void Page_Load(object sender, System.EventArgs e) { string Url = "http://dotnet.aspx.cc/Images/logoSite.gif"; string StringFileName = Url.Substring(Url.LastIndexOf("/") + 1); string StringFilePath = Request.PhysicalApplicationPath; if(!StringFilePath.EndsWith("/")) StringFilePath += "/"; MSXML2.XMLHTTP _xmlhttp = new MSXML2.XMLHTTPClass(); _xmlhttp.open("GET",Url,false,null,null); _xmlhttp.send(""); if( _xmlhttp.readyState == 4 ) { if(System.IO.File.Exists(StringFilePath + StringFileName)) System.IO.File.Delete(StringFilePath + StringFileName); System.IO.FileStream fs = new System.IO.FileStream(StringFilePath + StringFileName, System.IO.FileMode.CreateNew); System.IO.BinaryWriter w = new System.IO.BinaryWriter(fs); w.Write((byte[])_xmlhttp.responseBody); w.Close(); fs.Close(); Response.Write ("文件已经得到。<br><a href="/default/index/url?u=aHR0cHM6Ly93d3cuY25ibG9ncy5jb20iICsgUmVxdWVzdC5BcHBsaWNhdGlvblBhdGggKyBTdHJpbmdGaWxlTmFtZSArIg==" target="_blank" rel="nofollow">"); Response.Write ("查看" + StringFileName + "</a>"); } else Response.Write (_xmlhttp.statusText); Response.End(); }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-19
  • 2022-12-23
  • 2022-12-23
  • 2021-09-15
  • 2022-01-11
  • 2021-08-30
猜你喜欢
  • 2022-12-23
  • 2021-12-09
  • 2021-12-24
  • 2021-09-19
  • 2021-11-01
  • 2022-12-23
  • 2021-05-28
相关资源
相似解决方案