This question is locked. New answers and comments are not allowed.
Is it possible to use the synchronous upload without specifying Action Name and Controller name like below?
Unfortunately, when I specify the Action Name and Controller, and try to return a PartialView all I'm returning is the submitted form.
@using (Ajax.BeginForm("ProcessSubmit", "FloorPlan", new AjaxOptions { UpdateTargetId = "uploadForm", HttpMethod = "POST" }))Unfortunately, when I specify the Action Name and Controller, and try to return a PartialView all I'm returning is the submitted form.