gpt4 book ai didi

ASP.NET 页面特定配置

转载 作者:行者123 更新时间:2023-12-04 22:02:36 24 4
gpt4 key购买 nike

有没有办法让 web.config 文件的某些部分只适用于单个文件(或目录,或一组文件等)

基本上我只想将以下内容应用于应用程序中的单个页面,其余部分应使用默认设置:(将上传大小限制为32M)

<system.web>
<httpRuntime maxRequestLength="32768" executionTimeout="360"/>
</system.web>

关键是我只希望该特定页面接受大文件。

最佳答案

您可以使用:

  <location path="UploadPage.aspx">
<system.web>
<httpRuntime maxRequestLength="33554432" executionTimeout="360" />
</system.web>
</location>

更多信息 here .

关于ASP.NET 页面特定配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/472478/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com