0

我需要在我的站点中显示来自数据库的图像,但它不想要。

我有这样的结果:我的网站

我已经在这里尝试了所有其他 stackoverflow 帮助主题,但没有一个对我有用。

我按照 Steven Sanderson 的“Pro ASP.NET MVC Framework”(第 256-262 页)中的说明进行操作,但它无法正常工作。

我的课:

[HttpPost]
    public ActionResult Edit(Product product, HttpPostedFileBase image)
    {
        if (ModelState.IsValid)
        {
            if (image != null)
            {
                product.ImageMimeType = image.ContentType;
                product.ImageData = new byte[image.ContentLength];
                image.InputStream.Read(product.ImageData,0,image.ContentLength);
            }
            repository.SaveProduct(product);
            TempData["message"] = string.Format("{0} has been saved", product.Name);
            return RedirectToAction("Index");
        }      
            return View(product);    
    }

我的操作方法:

public FileContentResult GetImage(int productId)
    {
        Product prod = repository.Products.FirstOrDefault(p => p.ProductID == productId);
        if (prod != null)
        {
            return File(prod.ImageData, prod.ImageMimeType);
        }
        else
        {
            return null;
        }
    }

而我的观点:

看法:

@model SportsStore.WebUI.Domain.Entities.Product

@using(Html.BeginForm("Edit","Admin",FormMethod.Post, new { enctype = "multipart/form-data" }))

{

  @Html.EditorForModel()

    <div class="editor-label">Image</div>
    <div class="editor-field">
    @if (Model.ImageData == null)
    {
        @:None 
    }
    else
    {
        <img width="150" height="150" scr="@Url.Action("GetImage", "Product", new {Model.ProductID })"/>
    }
      <div>Upload new image: <input type="file" name="Image" /></div>
</div>
<input type="submit" value="save"/>
@Html.ActionLink("Cancle and return to List","Index") 

}

4

1 回答 1

1

你有属性scr而不是src.

于 2013-10-31T15:46:22.590 回答