手机
当前位置:查字典教程网 >编程开发 >asp.net教程 >在.NET中利用XMLHTTP下载文件的代码
在.NET中利用XMLHTTP下载文件的代码
摘要:利用XMLHTTP下载文件,和以前的方法一样,先添加引用-COM-MicrosoftXml3.0,然后在代码开始处写:usingMSXML2...

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

usingMSXML2;

下面就是主要的代码:

privatevoidPage_Load(objectsender,System.EventArgse){

stringUrl="http://dotnet.aspx.cc/Images/logoSite.gif";

stringStringFileName=Url.Substring(Url.LastIndexOf("/")+1);

stringStringFilePath=Request.PhysicalApplicationPath;

if(!StringFilePath.EndsWith("/"))

StringFilePath+="/";

MSXML2.XMLHTTP_xmlhttp=newMSXML2.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.FileStreamfs=newSystem.IO.FileStream(StringFilePath+StringFileName,System.IO.FileMode.CreateNew);

System.IO.BinaryWriterw=newSystem.IO.BinaryWriter(fs);

w.Write((byte[])_xmlhttp.responseBody);

w.Close();

fs.Close();

Response.Write("文件已经得到。<br><ahref='"+Request.ApplicationPath+StringFileName+"'target='_blank'>");

Response.Write("查看"+StringFileName+"</a>");

}

else

Response.Write(_xmlhttp.statusText);Response.End();}

【在.NET中利用XMLHTTP下载文件的代码】相关文章:

ASP.NET常用代码

在ASP.NET中实现多文件上传的方法

如何在浏览器中打开PDF文件并实现预览的思路与代码

ASP.NET JSON字符串与实体类的互转换的示例代码

读取TXT文件内容的方法

关于.NET动态代理的介绍和应用简介

ASP.NET程序中常用代码汇总

asp.net(c#)利用构造器链的代码

ASP.NET 导出到Excel时保留换行的代码

ASP.NET Web API实现POST报文的构造与推送

精品推荐
分类导航