2011-06-20 84 views
0

我開發了一個asp.net mvc3 web應用程序,因爲我希望上傳圖片和videos.Images保存在服務器路徑中,但當我上傳超過50MB的視頻文件時顯示錯誤如何將大型視頻文件上傳到mvc3服務器路徑中

This webpage is not availableThe webpage at http://localhost:1318/Campaign/Advertises might be temporarily down or it may have moved permanently to a new web address. 
Here are some suggestions: 
Reload this web page later. 
Error 101 (net::ERR_CONNECTION_RESET): The connection was reset. 

這是我得到了錯誤,請幫助我如何解決這個上傳文件在服務器路徑。

+0

你可以看看的[在博客文章(http://weblogs.asp.net/jgalloway/archive/2008/01/08/large-file-uploads-in-asp-net的.aspx)。 [Silverlight文件上傳](http://silverlightfileupld.codeplex.com/)是您可以在客戶端上使用的一個組件。 –

回答

1

設置此在你的web.config文件:

<httpRuntime maxRequestLength="<kilobytes allowed per upload>" /> 

,所以如果你想允許的文件多達50兆,設置此。

<httpRuntime maxRequestLength="51200" /> 
+0

嗨,謝謝你給respassse.already我已經在我的web.config文件中設置了這個MaxRequestlenth。

+0

是的,這應該允許您上傳大小約10 megs的文件。你會想要增加。如果你看看達林的答案,你可以找到更深入的解釋和解決你的問題。 –

相關問題