[C#] syntaxhighlighter_viewsource syntaxhighlighter_copycode
<security>
<requestFiltering>
<!--服务器端最大文件限制,asp.net默认只允许上传4m文件,单位bytes 下面是添加限制大小为200M-->
<requestLimits maxAllowedContentLength="204800000" />
</requestFiltering>
</security>
[C] syntaxhighlighter_viewsource syntaxhighlighter_copycode
<httpRuntime requestValidationMode="2.0" maxRequestLength="2048000" executionTimeout="3600"/>
意思是改为2G,上传时间1小时,
或者把这个节点删除掉,只需要在项目根目录里面配置这个节点即可,根目录配置这个节点如下
<system.web>
<compilation debug="true" targetFramework="4.6"/>
<httpRuntime targetFramework="4.6" requestValidationMode="2.0" maxRequestLength="2048000" executionTimeout="3600" />
</system.web>