我有以下的看法代碼:後從查看文件到控制器
<div>
<input type="file" name ="file" onchange="location.href='<%: Url.Action("ChangeImage", new{Id = Model.Id}) %>'" />
</div>
而且在控制器我有ChangeImage方法:
public ActionResult ChangeImage(FormCollection collection, int Id,Products products)
{
var file = Request.Files["file"];
//Do something
}
但所選擇的文件不發佈到控制器。問題是什麼?如何將文件內容發送給控制器以使用它?
你的表格在哪裏? – jrummell