My error is Maximum request length exceeded.
I want file upload must be smaller than 2MB. Please help me to fix code bellow, thanks
my controller:
public ActionResult Index()
        {
            var path = "~/Images/upload/";
            if (Request.Files["UpFile"] != null && Request.Files["UpFile"].ContentLength < 2048)
            {
                var upload = Request.Files["UpFile"];
                upload.SaveAs(Server.MapPath(path + upload.FileName));
            }
            else
            {
                ModelState.AddModelError("", "The size of file too big");
            }
            return View();
        }
 
     
    