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

本文关键字:路径 服务器 文件 大型 mvc3 视频 | 更新日期: 2023-09-27 17:59:42

我已经开发了一个asp.net mvc3 web应用程序,因为我想要上传图像和视频。图像保存在服务器路径中,但当我上传超过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.

这是我得到的错误,请帮助我如何解决这个问题,上传一个文件在服务器路径。

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

在web.config文件中设置此项:

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

因此,如果您想允许文件高达50兆欧,请设置此项。

<httpRuntime maxRequestLength="51200" />