2013-05-17 56 views

回答

1

我假設這是由於達到了最大請求長度方法。如果是這樣,您可以通過將最大請求長度設置爲更高的值來解決此問題。

<configuration> 
    <system.web> 
     <!-- This will set the maximum request length to 30720 KB (30MB). 
      The default is 4096 KB (4MB) --> 
     <httpRuntime maxRequestLength="30720" /> 
    </system.web> 
</configuration> 
:您可以通過設置 了maxRequestLength屬性 的httpRuntime元素改變這個值