programmer
programmer

Reputation: 109

How to upload large files in MVC5?

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.

web.config error

Upvotes: 0

Views: 707

Answers (1)

user9405863
user9405863

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

Related Questions