一、问题描述
在ASP.NET的web应用中,导出数据时出现500 - Internal server error.Maximum request length exceeded。
二、原因分析
这个错误通常出现在Web应用程序中,表示客户端发送的HTTP请求的长度超过了服务器配置的最大请求长度限制。这可能是因为上传或者下载传输的文件大小超过了服务器允许的大小。
三、解决问题
我们可以通过修改应用web.config 中maxRequestLength请求体的大小来解决问题。
web.config添加文件内容如下:
<system.webServer>
<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>
注:maxRequestLength的单位为Byte,即1048576 = 1024KB