zoukankan      html  css  js  c++  java
  • 简单的文件上传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");
                    }
                }
      
            }
  • 相关阅读:
    “”开天眼“”,天地分割效果
    关于获得当前的index的方法
    echart(2),模拟数据导入篇
    腾讯windows系统服务器
    elsarticle模板 去掉Preprint submitted to
    elsarticle模板 去掉摘要前后的两条横线
    LeetCode 345. Reverse Vowels of a String
    path变量修改后无法保存
    LeetCode 13: Roman to Integer
    LeetCode 118. Pascal's Triangle
  • 原文地址:https://www.cnblogs.com/jameslif/p/3227455.html
Copyright © 2011-2022 走看看