zoukankan      html  css  js  c++  java
  • C# 文件(图片)下载

    视图:
    @model List<string>

    <table>
        <tr>
            <th>文件</th>
            <th>操作</th>
        </tr>
        @for (int i = 0; i < Model.Count; i++)
        {
            <tr>
                <td>@Model[i].ToString()</td>
                <td>@Html.ActionLink("下载", "XZ", new { fileName = Model[i].ToString() })</td>
            </tr>
        }
    </table>


    控制器:
    public ActionResult UpFile1()
            {
                var a = new List<string> { "38.jpg", "下载文件1.png", "报错信息.docx" };
                return View(a);
            }
            public FileResult XZ(string fileName)
            {
                string fileDz = "~/App_Data/File/" + fileName;
                return File(fileDz, "application/force-download", Path.GetFileName(fileDz));
            }

  • 相关阅读:
    CF1056G
    mysql xtrabackup 备份恢复
    linux yum源配置
    mysql 第24章 优化
    mysql 第23章 监控
    mysql 第22章 高可用MMM、MHA
    mysql 第21章 集群
    mysql 第20章 复制
    mysql 第19章 备份恢复
    mysql 第18章 导入导出
  • 原文地址:https://www.cnblogs.com/lujingBK/p/11477137.html
Copyright © 2011-2022 走看看