0
我最近看到了這段代碼,我可以在web.config中爲特定頁面設置請求超時我的問題是如果頁面在iframe中加載做網頁.config仍然知道該請求是針對該頁面而不是父頁面的?爲iframe中的頁面設置超時
<location path="Partners/GetPartners.aspx">
<system.web>
<httpRuntime executionTimeout="3600" maxRequestLength="1048576" />
</system.web>
</location>
GetPartners.aspx正從一個iframe裝載頁面中調用showPartners
好的謝謝你的幫助:) – Sora