我最近看到了这段代码,我可以在其中为 web.config 中的特定页面设置请求超时我的问题是,如果页面正在 iframe 中加载,web.config 是否仍然知道请求是针对该页面的不是父页面?
<location path="Partners/GetPartners.aspx">
<system.web>
<httpRuntime executionTimeout="3600" maxRequestLength="1048576" />
</system.web>
</location>
GetPartners.aspx 正在从名为 showPartners 的页面内的 iframe 加载