我正试图在我的asp.net网站上增加执行超时和文件上传限制,但是当我尝试添加时
<httpRuntime
executionTimeout="110"
maxRequestLength="4096">
</httpRuntime>
我收到以下错误:
Could not find schema information for the element 'httpruntime'.
Could not find schema information for the element 'executionTimeout'.
Could not find schema information for the element 'maxRequestLength'.
根据这个msdn库link这就是我应该这样做的,所以我在这里缺少什么?
答案 0 :(得分:2)
你试过了吗?
<location path="YourUploadPage.aspx">
<system.web>
<httpRuntime maxRequestLength="{your value here}"
executionTimeout="{your value here}" />
</system.web>
</location>
表示<httpRuntime>
部分应位于<system.web>
或<location><system.web>
部分内。