Ad-hoc override ASP.NET request maximum size

Is there a way to override the maximum request size for a particular ASP.NET/ASP.NET MVC page without , also changing it for the rest of the site through Web.config?

+3
source share
1 answer

Use the <location> element in web.config and define the URL setting of your page.

+5
source

Source: https://habr.com/ru/post/1710106/


All Articles