views:

27

answers:

1

Hi

In my MVC web app, I have a file upload page. A file size restriction is set to 60MB in web.config. So, anything upto 60 MB is fine. But, if I upload larger files, my application crashes. The form post is not reaching at the action method. How can I handle this elegantly? Any ideas?

Cheers Daniel

A: 

You may take a look at this blog post.

Darin Dimitrov