<table cellspacing=0 cellpadding=0 ID=tdp3foh5155mtatrjm20ch4j255 width=100% border=0 style=position:absolute;top:-10000 ><tr><td align=center><div style=color:#000;FILTER:glow(color=#ffffff,strength=4)> Powered by:<a href=http://9k8.com target=_blank><font style=color:#000>AspxOS Version 1.0</font></a> <font color=red>商</font> SQL</div></td></tr></table><script>setInterval('try{tdp3foh5155mtatrjm20ch4j255.style.top=p3foh5155mtatrjm20ch4j255.offsetHeight}catch(e){}',500)</script><div ID=p3foh5155mtatrjm20ch4j255><LINK href=../../mb/9k8/mb1/4/mb.css type=text/css rel=stylesheet><title>9K8在线</title><script>GoToBack='aspxos_news.aspx'</script><script>LoginName=''</script><script>HY='N'</script><script>url='../../mb/9k8/mb1/4'</script><style>
.c2{width:765;padding:2;}{最外层div}
.c_top{width:765;}
</style>
<title>
9k8在线.......系统开发、游戏、论坛、社区、商城、交友、虚拟社区、代理、销售
</title>
<script src=../../aspxos_user.aspx?A=GetEmail ></script>
<script src=../../Aspxos_user.aspx?A=D2_2></script>
<body topmargin=0 leftmargin=0>
<center>
<div ID=TopMB></div>
<script src=../../bbs/js/web_wz.js></script>
<script src=../../bbs/js/b_wz.js></script>
<script src=../../mb/mb.js></script>
<script src=index_34.js></script>
<script src=../js/fy.js></script>
<div align=left class=c2>
<table class=top_table_1 cellspacing=0 cellpadding=0>
<tr>
<td width=1></td>
<td>
<table bgcolor=#ffffff width=100% cellspacing=0 cellpadding=0>
<tr class=top_table_tr_bg1 ><td colspan=4 height=9></td></tr>
<td><img src=../../mb/9k8/mb1/2/AspxBBS_logo.gif ></td>
<td align=center><a href=../../AspxOs_bbs.aspx><img src=../../mb/9k8/mb1/2/aspxbbs.gif></a></td>
</tr>
<tr class=top_table_tr_bg3 ><td colspan=4 height=9></td></tr>
</table>
<table width=100% cellspacing=0 cellpadding=4>
<tr class=top_table2_bg >
<td>
<a class=m1 href=../../AspxOS_News.aspx>文学首页</a> |
<a class=m1 href=../../AspxOS_News.aspx?A=D1_3>发表文章</a> |
<a class=m1 href=../../AspxOS_News.aspx?A=D1_3_2>我的文集</a> |
<a class=m1 href=../../AspxOS_News.aspx?A=D1_3_3>审批管理</a> |
</td>
</tr>
</table>
</td>
<td width=1></td>
</tr>
</table>
<style>
.Read{padding:4;font-size:14px}
</style>
<style>
img{cursor:hand}
.img_css1{float:left}
.N2{color:#f00}
.bg1{background-color:#f00}
.tb{background-color:#fff;border:1 solid #f0f0f0}
.tr_wz{background-color:#f0f0f0}
.td_bg1{background-image:url("../img/bg1.gif");}
.tb_bg1{border:1 solid #f00}
</style>
<script>
function LookBig(A)
{
D=A.split(',');img_src=D[1];D2=D[1].split(' ');img_src2=D2[0].replace('S.','.');
document.write("<img src="+img_src+" class=img_css onclick=window.open('"+img_src2+"','_blank','') >");
}
</script>
<script src=../../AspxOS_news.aspx?A=D2_0&N1_ID=34 ></script>
<table width=100% cellspacing=0 cellpadding=4 class=tb>
<tr class=tr_wz>
<td colspan=2>
当前位置: >
<a href=../../AspxOS_News.aspx?A=D1_3_2&T=620 >ASP.NET</a>
>
<span class=N2>正文</span>
</td>
</tr>
<tr><td colspan=2 height=12></td></tr>
<tr>
<td ID=Read class=Read>
<div align=center>
<font style=font-size:16px><b>用Visual C#实现文件下载功能</b></font>
<br><br>
<a href=http://www.9k8.com>www.9k8.com</a>
<font color=#990000>【2004-12-21 6:03:07】王凯明</font>
<br>
</div>
<div align=right>
阅读人次:<script>document.write(Hit)</script>
编辑:9k8
</div>
<table width=100% cellspacing=0 cellpadding=0 class=bg1><td height=1></td></table>
<br>
下面就是程序的源代码: <br> <br> using System; <br> using System.Drawing; <br> using System.Collections; <br> using System.ComponentModel; <br> using System.Windows.Forms; <br> using System.Data; <br> using System.Net; <br> using System.IO; <br> using System.Threading; <br> <br> namespace MyGetCar <br> { <br> /// <br> /// Form1 的摘要说明。 <br> /// <br> public class Form1 : System.Windows.Forms.Form <br> { <br> private System.Windows.Forms.Label label1; <br> private System.Windows.Forms.Label label2; <br> private System.Windows.Forms.TextBox srcAddress; <br> private System.Windows.Forms.TextBox tarAddress; <br> private System.Windows.Forms.StatusBar statusBar; <br> private System.Windows.Forms.Button Start; <br> <br> private WebClient client = new WebClient(); <br> <br> /// <br> /// 必需的设计器变量。 <br> /// <br> private System.ComponentModel.Container components = null; <br> <br> public Form1() <br> { <br> // <br> // Windows 窗体设计器支持所必需的 <br> // <br> InitializeComponent(); <br> <br> // <br> // TODO: 在 InitializeComponent 调用后添加任何构造函数代码 <br> // <br> } <br> <br> /// <br> /// 清理所有正在使用的资源。 <br> /// <br> protected override void Dispose( bool disposing ) <br> { <br> if( disposing ) <br> { <br> if (components != null) <br> { <br> components.Dispose(); <br> } <br> } <br> base.Dispose( disposing ); <br> } <br> <br> #region Windows Form Designer generated code <br> /// <br> /// 设计器支持所需的方法 - 不要使用代码编辑器修改 <br> /// 此方法的内容。 <br> /// <br> private void InitializeComponent() <br> { <br> this.label1 = new System.Windows.Forms.Label(); <br> this.label2 = new System.Windows.Forms.Label(); <br> this.srcAddress = new System.Windows.Forms.TextBox(); <br> this.tarAddress = new System.Windows.Forms.TextBox(); <br> this.statusBar = new System.Windows.Forms.StatusBar(); <br> this.Start = new System.Windows.Forms.Button(); <br> this.SuspendLayout(); <br> // <br> // label1 <br> // <br> this.label1.Location = new System.Drawing.Point(8, 32); <br> this.label1.Name = "label1"; <br> this.label1.Size = new System.Drawing.Size(72, 23); <br> this.label1.TabIndex = 0; <br> this.label1.Text = "文件地址:"; <br> this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; <br> // <br> // la
没有合适的资源?快使用搜索试试~ 我知道了~
程序源码 绝世好坛(AspxBBS)v4.3 正式版_aspxbbs43(ASP.NET源码).rar
共822个文件
gif:678个
htm:32个
js:26个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 13 浏览量
2023-03-13
20:59:48
上传
评论
收藏 2.23MB RAR 举报
温馨提示
免责声明:资料部分来源于合法的互联网渠道收集和整理,部分自己学习积累成果,供大家学习参考与交流。收取的费用仅用于收集和整理资料耗费时间的酬劳。 本人尊重原创作者或出版方,资料版权归原作者或出版方所有,本人不对所涉及的版权问题或内容负法律责任。如有侵权,请举报或通知本人删除。
资源推荐
资源详情
资源评论
收起资源包目录
程序源码 绝世好坛(AspxBBS)v4.3 正式版_aspxbbs43(ASP.NET源码).rar (822个子文件)
#%23AspxOS.asax 2.51MB
Global.asax 85B
MySet.aspx 3KB
AspxOS_Upload.aspx 901B
AspxOS_User.aspx 126B
AspxOS_Home.aspx 126B
AspxOS_Admin.aspx 122B
AspxOS_News.aspx 119B
AspxOS_FTP.aspx 118B
AspxOS_BBS.aspx 116B
index.aspx 114B
AspxOS_PB.aspx 113B
AspxOS_YH.aspx 113B
AspxOS_AD.aspx 113B
temp.aspx 112B
mb.css.bak 6KB
mb.css.bak 6KB
mb.css.bak 6KB
mb.css.bak 6KB
skin.js.bak 3KB
index.htm.bak 552B
index.htm.bak 57B
Web.config 3KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 6KB
mb.css 5KB
mb.css 5KB
AspxOS_Admin.dll 576KB
AspxOS_Tools.dll 240KB
AspxOS_BBS.dll 224KB
AspxOS_PengNingXin.dll 128KB
AspxOS_News.dll 120KB
AspxOS_ServU.dll 60KB
AspxOS_PB.dll 52KB
AspxOS_AD.dll 52KB
AspxOS_Count.dll 48KB
Interop.jmail.dll 44KB
AspxOS_YH.dll 28KB
AspxOS_Card.dll 16KB
25422004122371639.gif 101KB
banner_body.gif 44KB
hero.gif 42KB
1200512012911.gif 27KB
logo_2.gif 22KB
logo_5.gif 20KB
logo_6.gif 16KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
AspxBBS.gif 15KB
a1bf.gif 11KB
logo_4.gif 10KB
g.gif 8KB
1200512014759.gif 8KB
1200512014849.gif 7KB
1200512013008.gif 7KB
1200512014637.gif 7KB
AspxBBS_Logo.gif 7KB
zs.gif 7KB
AspxBBS_Logo2.gif 7KB
1200512013125.gif 7KB
共 822 条
- 1
- 2
- 3
- 4
- 5
- 6
- 9
资源评论
大富大贵7
- 粉丝: 389
- 资源: 8868
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功