asp.net mvc怎么做到把数据库里面图片的存储地址读出来,然后显示在<img>中!!!

日期:2015-06-12 09:34:57 人气:1

asp.net mvc怎么做到把数据库里面图片的存储地址读出来,然后显示在<img>中!!!

前台: 后台: public ActionResult action() { string path = "读取数据库里面的图片路径"; byte[] img = System.IO.File.ReadAllBytes(path);//将图片读入字节数组 return new FileContentResult(img, "image/jpeg");/
    A+
热门评论