web.config
<system.web>
<httpRuntime executionTimeout="90" maxRequestLength="100000" useFullyQualifiedRedirectUrl="false" />

解决方案 »

  1.   

    修改web.config文件可以改变这个默认值  
    <configuration>  
       <system.web>  
             <httpRuntime  maxRequestLength="10000"  ......>  
       </system.web>  
    <configuration>
      

  2.   

    在Web.Config文件中:
    <configuration> 
    <system.web> 
    <httpRuntime maxRequestLength="10000" 
    useFullyQualifiedRedirectUrl="true" 
    executionTimeout="45"/> 
    </system.web> 
    </configuration> 你可以修改超时时间executionTimeout的值。
      

  3.   

    不是啊,,我是说800k就不行了,,而且是asp程序没有web.config,asp程序放在win 2003系统下的。我早修改了windows/microsoft.net/framwork/config/machine.config
    中maxRequestLength也不行
      

  4.   

    asp程序?那可能与你的上传组件有关吧!