首页 > HTTP 错误 404.13 - Not Found 请求筛选模块被配置为拒绝超过请求内容长度的请求。...

HTTP 错误 404.13 - Not Found 请求筛选模块被配置为拒绝超过请求内容长度的请求。...

把以下内容加在web.config的节点

<security>

<requestFiltering >

<requestLimits maxAllowedContentLength="1024000000" >requestLimits>

requestFiltering>

security>

上述中maxAllowedContentLengt是以字节为单位,1024000000差不多就是1G

转载于:https://www.cnblogs.com/EasyLive2006/archive/2011/09/03/2165396.html

更多相关:

  • # 前言   简单了解 SecurityManager。具体查阅 API。   # What   它是 Java 沙盒模型控制安全的重要一个环节。它是 Java 的一个类。下面一段话源于SecurityManager API:   The security manager is a class that allows applicat...