0

我最近看到了这段代码,我可以在其中为 web.config 中的特定页面设置请求超时我的问题是,如果页面正在 iframe 中加载,web.config 是否仍然知道请求是针对该页面的不是父页面?

<location path="Partners/GetPartners.aspx">
<system.web>
    <httpRuntime executionTimeout="3600" maxRequestLength="1048576" />
</system.web>
</location>

GetPartners.aspx 正在从名为 showPartners 的页面内的 iframe 加载

4

1 回答 1

0

是的,因为在那个 iframe 中,它将加载自己的请求。

于 2013-06-05T10:11:51.077 回答