• asp.net type=file前后台合作 在上传图片到服务器


    前台

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title></title>
    </head>
    <body>
        <form runat="server" id="form1" method="post" enctype="multipart/form-data">
            <input name="f" type="file" />
            <input name="s" type="submit" />
        </form>
    </body>
    </html>

    后台

     System.Web.HttpFileCollection _file = System.Web.HttpContext.Current.Request.Files;
            if (_file.Count > 0)
            {
                //文件大小
                long size = _file[0].ContentLength;
                //文件类型
                string type = _file[0].ContentType;
                //文件名
                string name = _file[0].FileName;
                //文件格式
                string _tp = System.IO.Path.GetExtension(name);
    
                if (_tp.ToLower() == ".jpg" || _tp.ToLower() == ".jpeg" || _tp.ToLower() == ".gif" || _tp.ToLower() == ".png" || _tp.ToLower() == ".swf")
                {
                    //获取文件流
                    System.IO.Stream stream = _file[0].InputStream;
                    //保存文件
                    string saveName = DateTime.Now.ToString("yyyyMMddHHmmss") + _tp;
                    string path = DataFactory.WFile.FileUploadPath + "/upload/area/" + saveName;
                   // string path = Server.MapPath("images/"+savename);自己编写
                    _file[0].SaveAs(path);
                }
            }

    总结:

    1.form 必须有runat="server"标记,

    2.form  必须有enctype="multipart/form-data"标记,

    3.<input type="file" />的runat="server"标记可选

    完!

  • 相关阅读:
    python 安装预编译库注意事项-pip
    Lucene 入门需要了解的东西
    PHPSTORM 与 Xdebug 配合调试
    Windows 下命令行修改文件夹的控制权限 Cacls
    PHP 解压zip文件的函数封装
    PHP 关于回调的用法
    CentOS7 安装 swoole
    CentOS7 安装 scala 2.11.1
    PHP 代码质量检测工具的安装与使用
    PHP 新建动态类的代码
  • 原文地址:https://www.cnblogs.com/wwz-wwz/p/6244725.html
Copyright © 2020-2023  润新知