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

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

    This setting goes in your web.config file. It affects the entire application, though... I don't think you can set it per page.

    
      
        
      
    
    

    "xxx" is in KB. The default is 4096 (= 4 MB).

提交回复
热议问题