国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

.net中xmlhttp下載文件的方法參考

2024-07-10 12:58:38
字體:
供稿:網(wǎng)友
<%@ page language="c#"%>
<%@import namespace=msxml2%>
<script language="c#" runat="server">
private void page_load(object sender, system.eventargs e)
{
string url = "http://www.cccar.com.cn/images/index2_01.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 ("文件已經(jīng)得到。<br><a href='" + request.applicationpath + "//" + stringfilename +"' target='_blank'>");
response.write ("查看" + stringfilename + "</a>");
}
else
//response.write (_xmlhttp.statustext);
response.end();
}
</script>


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 北安市| 康定县| 贵南县| 固阳县| 佛山市| 长岛县| 咸丰县| 揭东县| 瓮安县| 新丰县| 花莲市| 靖安县| 九龙县| 彝良县| 华亭县| 陈巴尔虎旗| 徐闻县| 长武县| 大埔区| 汉中市| 定陶县| 旌德县| 克什克腾旗| 忻州市| 个旧市| 平陆县| 应城市| 宁陕县| 竹北市| 横峰县| 聂荣县| 香河县| 封丘县| 尉氏县| 资兴市| 肥东县| 耒阳市| 保定市| 梓潼县| 衡阳县| 什邡市|