如何将大视频文件上传到mvc3中的服务器路径

时间:2011-06-20 05:47:45

标签: c# asp.net-mvc-3

我开发了一个asp.net mvc3网络应用程序,因为我想上传图像和视频。图像保存在服务器路径但是当我上传超过50MB的视频文件时显示错误

   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.

这是我收到错误请帮助我如何解决此问题以在服务器路径中上传文件。

1 个答案:

答案 0 :(得分:1)

在web.config文件中设置:

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

所以如果你想允许最多50兆的文件,请设置它。

<httpRuntime maxRequestLength="51200" />