การอัปโหลดไฟล์ MVC 3 และการผูกโมเดล
ฉันมีการอัปโหลดแบบฟอร์มที่ใช้งานได้ แต่ฉันต้องการส่งข้อมูลโมเดลสำหรับฐานข้อมูลของฉันเพื่อบันทึกไฟล์ด้วยชื่ออื่นแน่นอน นี่คือมุมมองมีดโกนของฉัน: @model CertispecWeb.Models.Container @{ ViewBag.Title = "AddDocuments"; } <h2>AddDocuments</h2> @Model.ContainerNo @using (Html.BeginForm("Uploadfile", "Containers", FormMethod.Post, new { enctype = "multipart/form-data" })) { <input type='file' name='file' id='file' /> <input type="submit" value="submit" /> } นี่คือคอนโทรลเลอร์ของฉัน: [HttpPost] public ActionResult Uploadfile(Container containers, HttpPostedFileBase file) { if (file.ContentLength > 0) { var fileName = …