Reputation: 109
I need to upload large files (up to 1 GB) in ASP.NET MVC5
, I have tried many solutions from here.
How to upload large files in ASP.Net MVC 4
How to upload large files using MVC 4?
But any changes in web.config causes the following error.
HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid.
I can't add anything in web.config.
Upvotes: 0
Views: 707
Reputation: 1514
It seems Error you are getting is about duplicate entry of HttpRuntime
in web.config. Remove the duplicate entry. you should be good
Upvotes: 2