国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 芷江| 南城县| 武陟县| 汝州市| 铜山县| 精河县| 岳阳县| 离岛区| 石城县| 龙井市| 通辽市| 句容市| 禹城市| 永安市| 玉环县| 资溪县| 元朗区| 宁南县| 汪清县| 田阳县| 延寿县| 宾川县| 武宁县| 台山市| 石河子市| 淳化县| 贵南县| 太仓市| 周宁县| 镇沅| 东兰县| 布拖县| 镇康县| 金昌市| 盈江县| 吴江市| 新宁县| 黄平县| 望都县| 七台河市| 田阳县|