码迷,mamicode.com
首页 > Web开发 > 详细

mvc之文件下载

时间:2016-10-21 00:07:00      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

 

首先你要有四张图片,也就是数组中的数

public ActionResult Index()//创建视图
{
ViewBag.list =new int[] { 5, 6, 7,8 };

return View();
}
public ActionResult Get(int? id)
{
FilePathResult fpr = new FilePathResult(Server.MapPath("~/Content/imgs/"+id+".jpg"),"imgs/jpeg");
return fpr;
}

------------------Index:

@{

foreach (int item in ViewBag.list)
{
<li>@Html.ActionLink("sss" + item + "sss", "Get", "Home", new { id = item }, null) </li>
}
}

mvc之文件下载

标签:

原文地址:http://www.cnblogs.com/wangxlei/p/5982892.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!