简单的文件上传html+ashx

?
1
2
3
4
前台页面:< BR >< form action = "upload.ashx" method = "post" enctype = "multipart/form-data" >
         < input type = "file" name = "txtUpload" id = "fFile" />
         < input type = "submit" value = "上传" id = "btnUpload" />
     </ form >

一个file的input标签,一个表单提交按钮,将以post的形式提交到一般处理程序进行处理。

uploas.ashx:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
public void ProcessRequest(HttpContext context)
         {
             context.Response.ContentType = "text/plain" ;
  
             //判断文件数量是否大于零
             if (context.Request.Files.Count > 0)
             {
                 //这里是上传单个文件,所以取到上传文件数组第一个文件对象
                 HttpPostedFile file = context.Request.Files[0];
                 //判断文件路径是否为空
                 if (! string .IsNullOrEmpty(file.FileName))
                 {
                     //获取文件的拓展名
                     string extention = Path.GetExtension(file.FileName);
                     //使用当天的日期加上一个4位的随机数来组成一个随机文件名
                     string name = DateTime.Now.ToString( "yyyyMMdd" ) + new Random().Next(1000, 10000) + extention;
                     //设置文件保存的路径
                     string path = context.Server.MapPath( "Uploads/" + name);
                     //保存文件
                     file.SaveAs(path);
  
                     context.Response.Write( "ok" );
                 }
             }
  
         }

转载于:https://www.cnblogs.com/jameslif/p/3227455.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值