需要在服务器上修改如下文件
在目录C:\Windows\Microsoft.NET\Framework64\v2.0.50727\CONFIG中找到web.config文件。这里的服务器是64位的,如果是32位则目录是C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG
在web.config中找到如下内容
<system.web>
<authorization>
<allow users="*"/>
</authorization>
在<authorization>上面插入一行
<httpRuntime executionTimeout="90" maxRequestLength="40960" useFullyQualifiedRedirectUrl="false"
minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100"/>
保存,成功!