Answers:
此设置位于您的web.config文件中。但是,它会影响整个应用程序。。。我认为您不能为每页设置它。
<configuration>
<system.web>
<httpRuntime maxRequestLength="xxx" />
</system.web>
</configuration>
“ xxx”以KB为单位。默认值为4096(= 4 MB)。
对于IIS 7+,以及添加httpRuntime maxRequestLength设置,您还需要添加:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" /> <!--50MB-->
</requestFiltering>
</security>
</system.webServer>
或在IIS(7)中:
- 选择您要启用以接受大文件上传的网站。
- 在主窗口中,双击“请求过滤”
- 选择“编辑功能设置”
- 修改“最大允许内容长度(字节)”
maxRequestLength
,并maxAllowedContentLength
得到它的工作......看到stackoverflow.com/questions/6327452/...
为了增加上传文件的大小限制,我们有两种方法
1. IIS6或更低版本
默认情况下,在ASP.Net中,要上传到服务器的文件的最大大小约为4MB。可以通过修改web.config中的maxRequestLength属性来增加此值 。
切记:maxRequestLenght以KB为单位
示例:如果要将上传限制为15MB,请将maxRequestLength设置为“ 15360”(15 x 1024)。
<system.web>
<!-- maxRequestLength for asp.net, in KB -->
<httpRuntime maxRequestLength="15360" ></httpRuntime>
</system.web>
2. IIS7或更高版本
IIS7引入了请求过滤模块 .IIS7在ASP.Net之前执行,这意味着管道的工作方式是先检查IIS值(maxAllowedContentLength),然后再检查ASP.NET值(maxRequestLength)。 maxAllowedContentLength属性的默认值为28.61 MB。可以通过在同一web.config中修改两个属性来增加此值。
切记:maxAllowedContentLength以字节为单位
示例:如果要将上传限制为15MB,请将maxRequestLength设置为“ 15360”,将maxAllowedContentLength设置为“ 15728640”(15 x 1024 x 1024)。
<system.web>
<!-- maxRequestLength for asp.net, in KB -->
<httpRuntime maxRequestLength="15360" ></httpRuntime>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<!-- maxAllowedContentLength, for IIS, in bytes -->
<requestLimits maxAllowedContentLength="15728640" ></requestLimits>
</requestFiltering>
</security>
</system.webServer>
MSDN参考链接:https : //msdn.microsoft.com/zh-cn/library/e1f13641(VS.80).aspx
对于您的应用程序web.config,最大限制为2 GB:
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" maxRequestLength="2147483647" executionTimeout="1600" requestLengthDiskThreshold="2147483647" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" />
</requestFiltering>
</security>
</system.webServer>
如果其Windows 2003 / IIS 6.0,则在文件夹C:\ windows \ system32 \ inetsrv \ 中的metabase.xml文件中检出AspMaxRequestEntityAllowed =“ 204800”
我认为对于大多数用户而言,默认值“ 204800”(〜205Kb)太低。只需将值更改为您认为应该最大的值即可。
如果您在编辑后无法保存文件,则必须停止ISS服务器或启用服务器以允许编辑文件:
(来源:itmaskinen.se)
编辑:我没有正确阅读问题(如何在webconfig中设置maxrequest)。但是此信息对于其他人而言可能是个麻烦,许多人将其站点从win2000服务器移至win2003,并且具有正常的上传功能,并突然收到Request.BinaryRead Failed错误,便会使用它。所以我在这里留下答案。
我在Win 2008 IIS服务器中遇到相同的问题,我已经解决了在web.config中添加此配置的问题:
<system.web>
<httpRuntime executionTimeout="3600" maxRequestLength="102400"
appRequestQueueLimit="100" requestValidationMode="2.0"
requestLengthDiskThreshold="10024000"/>
</system.web>
该requestLengthDiskThreshold默认情况下为80000字节,因此对于我的应用程序来说太小了。requestLengthDiskThreshold以字节为单位,maxRequestLength以千字节为单位。
如果应用程序使用System.Web.UI.HtmlControls.HtmlInputFile
服务器组件,则会出现问题。要解决此问题,必须增加requestLengthDiskThreshold。
如果您使用的是Framework 4.6
<httpRuntime targetFramework="4.6.1" requestValidationMode="2.0" maxRequestLength="10485760" />
最大文件大小可以限制为单个MVC控制器,甚至可以限制为一个动作。
web.config <location>标签可用于此目的:
<location path="YourAreaName/YourControllerName>/YourActionName>">
<system.web>
<!-- 15MB maxRequestLength for asp.net, in KB 15360 -->
<httpRuntime maxRequestLength="15360" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<!-- 15MB maxAllowedContentLength, for IIS, in bytes 15728640 -->
<requestLimits maxAllowedContentLength="15728640" />
</requestFiltering>
</security>
</system.webServer>
</location>
或者,您可以将这些条目添加到区域自己的web.config中。
我知道这是一个老问题。
所以这就是你要做的:
在您的web.config文件中,将其添加到<system.web>
:
<!-- 3GB Files / in kilobyte (3072*1024) -->
<httpRuntime targetFramework="4.5" maxRequestLength="3145728"/>
和这下<system.webServer>
:
<security>
<requestFiltering>
<!-- 3GB Files / in byte (3072*1024*1024) -->
<requestLimits maxAllowedContentLength="3221225472" />
</requestFiltering>
</security>
您会在评论中看到它是如何工作的。在一个中,您需要以字节为单位的sie,在另一个中以千字节为单位。希望能有所帮助。
我有一篇博客文章,介绍如何增加ASP上传控制的文件大小。
从帖子:
默认情况下,FileUpload控件最多允许上传4MB的文件,并且执行超时为110秒。可以从web.config文件的httpRuntime部分中更改这些属性。maxRequestLength属性确定可以上传的最大文件大小。executeTimeout属性确定执行的最长时间。
如果它可以在您的本地计算机上运行,并且在IIS中部署后不能运行(我使用Windows Server 2008 R2),则有解决方案。
打开IIS(inetmgr)转到您的网站右侧转到“内容(请求过滤)”,然后转到“编辑功能设置”,将最大内容大小更改为(所需的字节数),这将起作用。您也可以从以下线程http://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits获得帮助