I tried Razor view viewbag and html input file uploade below code
View:
Controller:
[HttpPost]
public ActionResult ExtendFiles(HttpPostedFileBase FileUpload, string submitButton)
{
ViewBag.uploaded = Request.Files["FileUpload"].FileName;
if (submitButton == "Next")
{
} else if (submitButton == "GO")
{
}
else if (submitButton == "Back")
{
} }
After click Go button, display the file uploaded name 

Balaji PalaniPosted Jun 3, 2016, 8:44 AM
Vinay SinghPosted Jun 3, 2016, 8:05 AM