Is there a way to make certain sections of the web.config file applicable to only one file (or directory, or group of files, etc.).
Basically, I would like to apply the following to only one page of the application, the rest should use the default settings: (it limits the upload size to 32 MB)
<system.web> <httpRuntime maxRequestLength="32768" executionTimeout="360"/> </system.web>
The thing is, I want this particular page to accept large files.
source share