0
你好我想張貼圖片,但我一定是失去了一些東西,因爲我得到的是在return.Here字符串是我的代碼:發佈的圖像
@using(Html.BeginForm("Create", "ProductManager", FormMethod.Post,new{enctype="multipart/form-data"})){
<input type="file" class="text-box single-line" id="ProductImagePath" name="ProductAvatar" />
}
[HttpPost]
public ActionResult Create( FormCollection collection)
{
var imagePosted = collection["ProductAvatar"];
}
imagePosted只有null.What是我回報做錯了?
刪除這個線程,你已經得到了媒體鏈接在一個又一個的awnser。 –
可能重複[HttpPostedFileBase總是返回null並且圖像不會被髮布](http://stackoverflow.com/questions/14226408/httppostedfilebase-always-returns-null-and-image-does-not-get-posted) –