How to increase the max upload file size in ASP.NET?

后端 未结 15 3227
青春惊慌失措
青春惊慌失措 2020-11-22 06:09

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

15条回答
  •  迷失自我
    2020-11-22 06:14

    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.

提交回复
热议问题