我想有超过1所设定的maxRequestLength - 文件大小限制上传(例如,一个用于文件/新建,另一个用于图片/新建)。 我的所有操作采取额外的参数(例如/文件/新建?folderId = 234)。
单设置按预期工作:
<httpRuntime executionTimeout="60" maxRequestLength="1024" />
我想有2个设置在根web.config 2段位置,但没有成功。 我不知道该怎么在“路径”写 - 视图或控制器+动作的物理aspx页面...然而,似乎没有任何工作。
<location path="/File/">
<system.web>
<httpRuntime executionTimeout="60" maxRequestLength="4096" />
</system.web>
</location>
<location path="/Picture/">
<system.web>
<httpRuntime executionTimeout="60" maxRequestLength="1024" />
</system.web>
</location>
我试图把另一个web.config文件中的特定视图文件夹(如/视图/图片/ ...),就像它在经典的Webform ASP.NET,但这似乎并没有做任何的伎俩......
<location path="">
<system.web>
<httpRuntime executionTimeout="60" maxRequestLength="1024" />
</system.web>
</location>
无论我做什么,只有一个httpRuntime.maxRequestLength值应用于 - 在(根)web.config中...... System.Web程序。