when the file >10M  , I suggest you use ftp to do that ,because web post is alwayscreate error or something wrong !

解决方案 »

  1.   

    or you can store a hyperLink to your file in your Web server, use http Protocol
    to transmit it
      

  2.   

    必须要修改machine.config,像这样
    <httpRuntime ... maxRequestLength="8192" ... />
      

  3.   

    web的响应时间有限,最好不要传大文件。
    建议用ftp
      

  4.   

    同意楼上的看法。 
    大容量文件上传,还是不要用web方式。
      

  5.   

    在Web.COnfig中:<httpRuntime executionTimeout="90" maxRequestLength="100000" useFullyQualifiedRedirectUrl="false" />但是150MB也太大了吧,你可以搜索一下论坛“大文件”,我记得有几篇帖子专门讨论这个的。