1
我想上傳多個文件,對話框顯示多個文件選中(如下圖),但只有第一個文件被存儲在我的代碼中。我究竟做錯了什麼?Razor MVC 4只顯示多個上傳文件之一
@Html.TextBoxFor(model => model.files, new { @class = "form-control", type = "file", multiple = "true", placeholder = "upload files"})
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "type,files,date")] Task mydata)
{
System.Diagnostics.Debug.Write(mydata.files);//outputs: "C:\<path>\asdf.txt"
}
編輯:Task.files字符串類型
'Task.files'的類型是什麼? – Stijn
它是字符串類型。 – Slicedbread