首页 > 编程 > .NET > 正文

ASP.NET文件上传程序的源代码

2024-07-10 12:56:36
字体:
来源:转载
供稿:网友
本文件用vb.net编辑,在win2000+iis(安装有.net支持)中调试通过,可以上传许多常用的文件类型.如
rar、zip、doc、txt、jpg、gif等等!
直接下载保存为aspx格式就可以
------------------------------------------------------------
<html>
<title>文件上传</title>

<body>
<form enctype="multipart/form-data" runat=server>
<input type=file id=fileup runat=server size="20"><p>
<asp:button id=upload_button onclick=uploadfile text="上传" runat=server/>
</form>
<p>
<asp:label id=uptype runat=server/>
</body>
</html>
<script language=vb runat=server>
sub uploadfile(sender as object,e as eventargs)
if fileup.postedfile.contentlength=0 then
uptype.text="你还没有选择需要上传的文件!"
else
dim filesplit() as string=split(fileup.postedfile.filename,"/")
dim filename as string=filesplit(filesplit.length-1)
fileup.postedfile.saveas(server.mappath(".")&"/"&filename)
uptype.text="文件名称:"&fileup.postedfile.filename &"<br>"& _
"文件大小:"&fileup.postedfile.contenttype &"<br>"& _
"文件类型:"&fileup.postedfile.contentlength
end if

end sub
</script>
  • 本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表