Upload is null after adding jquery.unobtrusive-ajax.js reference
问题 If I don't refer jquery.unobtrusive-ajax.js I can get attachment on Post. If I refer it It's giving me null. <script src="~/Scripts/jquery.unobtrusive-ajax.js"></script> @using (Ajax.BeginForm("Index", "ContactSubmission", new AjaxOptions{ InsertionMode = InsertionMode.Replace, HttpMethod = "POST", OnSuccess = "updateSuccess" }, new { enctype = "multipart/form-data",@class = "form-horizontal", role = "form" })) { ///code here } [HttpPost] public JsonResult Index(Contact contact) { if