上传的文件超过3M的时候,就会报找不到页面 ,而且不走断点,怎么回事?谢谢!

解决方案 »

  1.   

    我不太确定。我只知道.net都有限制上传文件的大小,可以在web.config里面修改。<system.web>
    <httpRuntime maxRequestLength="40690"
    useFullyQualifiedRedirectUrl="true"
    executionTimeout="6000"
    useFullyQualifiedRedirectUrl="false" 
    minFreeThreads="8" 
    minLocalRequestFreeThreads="4" 
    appRequestQueueLimit="100" 
    enableVersionHeader="true"
    />
    </system.web>看看maxRequestLength
      

  2.   

    在web.config中设置上传文件的大小试试。    <system.web>
    <!--控制用户上传文件最大为100M,最长时间为60秒,最多请求数为100-->
    <httpRuntime maxRequestLength="102400" executionTimeout="60" appRequestQueueLimit="100"/>
    </system.web>
      

  3.   

    上传文件有大小限制,具体的该上面都给出来。我想要是上传大的文件,还不如用FTP呢,那个上传的控件,我想,就算改了,上传大的文件也是不太稳定的。
      

  4.   

    设置上传文件大小,在上传过程中可显示进度条
    web.config对单个上传文件的大小有一定限制,默认为4096K,web.config是否修改了
     <httpRuntime maxRequestLength="51200" executionTimeout="3600"  appRequestQueueLimit="10000"/>
      

  5.   

    <httpRuntime maxRequestLength="102400" executionTimeout="60" appRequestQueueLimit="100"/>
      

  6.   

    http://topic.csdn.net/t/20060907/00/5004178.html
      

  7.   

    http://topic.csdn.net/t/20060907/00/5004178.htmlhttp://www.pcstu.com/program/Asp_net/jq/20090722/65841.html