虽然这个问题asp.net file upload The connection to the server was reset while the page was loading指的是我正在寻找的解决方案,但它没有说明要添加这些新行的位置:
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2000000000" />
</requestFiltering>
</security>
<httpRuntime maxRequestLength="2000000000" executionTimeout="999999"/>
请告诉我这些行的添加位置:是machine.config还是web.config?几乎我尝试将其添加到web.config中的每个部分都出现了“无法识别的部分错误”。我不想触摸machine.config直到我确定。感谢。
答案 0 :(得分:0)
在Web.Config
中,需要按以下格式添加:
<configuration>
<system.web>
<httpRuntime>
示例:
<configuration>
<system.web>
<httpRuntime maxRequestLength="2000000000" executionTimeout="999999"/>
</system.web>
</configuration>
有关详细信息,请阅读以下文章: http://msdn.microsoft.com/en-us/library/e1f13641(v=vs.71).aspx