找不到元素'httpruntime'的架构信息

时间:2010-05-17 07:21:20

标签: asp.net web-config

我正试图在我的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这就是我应该这样做的,所以我在这里缺少什么?

1 个答案:

答案 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>部分内。