2013-11-14 86 views

回答

0

在开始时,我无法理解这种奇怪的行为,因为在提交页面之后甚至在调用特定页面之前显示空白页面。例如:我不得不调用buttonClick事件,但是当我点击那个按钮时,空白页即将到来。

解决方法是添加httpRunTime执行超时和maxRequestLength属性。

将以下内容添加到web.config文件的部分。

<system.web> 
     -- some code -- 
    <httpRuntime executionTimeout="600" maxRequestLength="102400" /> 
     --some code -- 
</system.web> 

我希望这会对你有帮助。