zoukankan      html  css  js  c++  java
  • input file 获取不到Request.Files 解决办法

      <input type="file" name="xxxxxxx"/>必须有“name”属性,否则在后台代码中用Request.Files是取不到值的

    后台读取文件代码:

         HttpFileCollection httpFileCollection = HttpContext.Current.Request.Files;
                    if (httpFileCollection.Count > 0)
                    {
                        HttpPostedFile file = httpFileCollection[0];
                       
                         StreamReader reader = new StreamReader(file.InputStream);
                         StringBuilder strLicense = new StringBuilder();
                         do
                         {
                             strLicense.AppendLine(reader.ReadLine());
                         } while (!reader.EndOfStream);

                         return strLicense.ToString();
                       
                    }

  • 相关阅读:
    JVM结构
    redis缓存淘汰策略
    idea常用快捷键
    Spring常用注解
    redis持久化
    crontab定时调度
    redis五种数据类型
    LVM实验报告
    fdisk以及parted分区实验
    fdisk与parted的区别以及parted为何可分128个区
  • 原文地址:https://www.cnblogs.com/johnblogs/p/6709369.html
Copyright © 2011-2022 走看看