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

后端 未结 15 3331
青春惊慌失措
青春惊慌失措 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:34

    Max file size can be restricted to a single MVC Controller or even to an Action.
    web.config tag can be used for this:

    
      
        
        
      
      
        
          
            
            
          
        
      
    
    

    Or you can add these entries in area's own web.config.

提交回复
热议问题