我正在将MVC 4项目从4.0转换为4.5
我需要在Web配置中将以下行添加到system.web,但是当我这样做时,我得到500-内部服务器错误

 <httpRuntime targetFramework="4.5" />

最佳答案

原来,当我尝试添加httpRuntime时,它已经存在于system.web的末尾。
为了解决这个问题,我进行了合并:

<httpRuntime maxRequestLength="102400" executionTimeout="1200" targetFramework="4.5"/>

09-03 17:47