<system.web>
<!--
targetFramework注意版本,开发环境为4.6.1,但是部分虚拟主机(如阿里云虚拟主机)只支持4.5,如果服务器不支持.NET Framework4.6.1,可自行修改targetFramework="4.5"的版本号
-->
<compilation targetFramework="4.5" />
<!--
httpRuntime节点的maxRequestLength的单位为kb,根据实际需求设置,不要设置太大,避免存在恶意请求占用服务器资源
-->
<httpRuntime targetFramework="4.5" maxRequestLength="10240" executionTimeout="6000" enableVersionHeader="false" />
<httpModules />
<globalization requestEncoding="utf-8" responseEncoding="utf-8" fileEncoding="utf-8" />
<httpCookies httpOnlyCookies="true" requireSSL="false" domain="" />
<sessionState mode="InProc" cookieName="sid" cookieless="false" stateConnectionString="tcpip=127.0.0.1:42424" timeout="120" />
<customErrors mode="Off" />
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID" />
</system.web>
设置了并且重起了网站,还是一样不起作用。