I have a form that excepts a file upload in ASP.NET. I need to increase the max upload size to above the 4 MB default.
I have found in certain places referencing the
I know it is an old question.
So this is what you have to do:
In you web.config file, add this in :
and this under :
You see in the comment how this works. In one you need to have the sie in bytes and in the other one in kilobytes. Hope that helps.