Asp.net 上传文件小叙(修改FileUpload显示文字等)

想要在asp.net网站上上传文件就得用到FileUpload,可是这个控件中“浏览”没法修改,可以使用html中<input type="file" 来解决该问题。

首先页面不能使用updatepannel,然后需要在页面form中添加method="post" enctype="multipart/form-data" 

例如

 <form id="form1" runat="server"  method="post" enctype="multipart/form-data">

然后在页面需要的位置放此代码

<input type="text" id="txtPath" name="txt"  style="width:250px"  runat="server" /> 
<input type="button" οnmοusemοve="f.style.pixelLeft=event.x-60;f.style.pixelTop=this.offsetTop;" value="Select" size="30" οnclick="f.click()" /> 
<input type="file" id="f" runat="server" οnchange="txtPath.value=this.value" accept="image/gif, image/jpeg" name="f" style="position:absolute;filter:alpha(opacity=0);" size="1" hidefocus="true" />

然后在上传按钮事件中这样写

 1 // 获取客户端上载文件
 2 HttpPostedFile UserHPF = Request.Files["f"];
 3 //获取文件夹路径
 4 string FilePath = Server.MapPath("./");
 5 string newfilepath = FilePath + "\\" + System.IO.Path.GetFileName(UserHPF.FileName);
 6 //将上传的文件存储在指定目录下
 7 UserHPF.SaveAs(newfilepath);
 8 
 9 if (File.Exists(newfilepath))
10 {
11       WebMessageBox(this,"Import license file successfully!");
12 }

通过这个方法HttpPostedFile UserHPF = Request.Files["f"];就能取到要上传的文件了 然后就是常规的SaveAs了。

 

转载于:https://www.cnblogs.com/zlsyl/p/5257739.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值