图像上传和预览在mvc 2中

时间:2011-05-12 15:36:24

标签: c# asp.net asp.net-mvc

我通过转换asp.net网站来学习mvc 2.在我的页面中,我必须上传图像并显示图像预览。

我的asp.net页面的屏幕截图如下所示。

Screen shoot of my asp.net

我已将模型创建为

public class Contest
    {
        public int contestid { get; set; }
        public string ContestName { get; set; }
        public string Description { get; set; }
        public DateTime StartDate { get; set; }
        public DateTime EndDate { get; set; }
        public int UserId { get; set; }
        public bool IsActive { get; set; }
        public string contestimage { get; set; }
    }

在我的控制器中

public ActionResult Createcontest()
{
   ContestModel contest = new ContestModel();
   return View(contest);
}
[HttpPost]
    public ActionResult Createcontest(ContestModel contest)
    {
///inserting data
      return View(contest);
    }

如果我在我的视图中使用iframe上传图像。那么如何将文件名绑定到contestimage。(我正在保存对数据库的contestimage)。 是否还有其他方法可以上传图片。

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:1)

//在控制器中你可以做到这一点

public ActionResult Show( int id )
     {


        byte[] Filecontent1 = null;


        foreach (byte[] Filecontent in db.ExecuteStoreQuery<byte[]>
       ("select Filecontent from [barcodes] where Barcode_Id = @p0 ", id))
        {
            Filecontent1 = Filecontent;
        }

        var imageData =   Filecontent1;

        return File( imageData, "image/jpg" );
    }

//将其放入视图中进行diplaying //自动挂钩Actionresult节目

<tr><img src='<%= Url.Action("Show", "contollername",new {id = Model.itemid }) %>' /></tr>

从网址获取ID:http:// localhost // page / 1

其中1是itemid