How to upload large files in ASP.Net MVC 4
I have code like this in the controller:
Request.Files.Get("img").SaveAs(Server.MapPath("~/Images/ImgSong/" + +Out.Id + ".jpg"));
It only allows uploading a small file, while the file I want to upload would range from 10Mb to 100Mb.
Please help me.