我最近看到这段代码,我可以为web.config中的特定页面设置请求超时我的问题是,如果页面正在iframe中加载,那么web.config仍然知道请求是该页面不是父页面?
<location path="Partners/GetPartners.aspx">
<system.web>
<httpRuntime executionTimeout="3600" maxRequestLength="1048576" />
</system.web>
</location>
正在从名为showPartners的页面内的iframe加载GetPartners.aspx
答案 0 :(得分:0)
是的,因为在那个iframe中,它将加载自己的请求。