我正在将mvc4项目转换为4.0到4.5
我需要在web配置中将以下行添加到system.web,但是当我这样做时,我得到500 - 内部服务器错误
<httpRuntime targetFramework="4.5" />
答案 0 :(得分:7)
原来我试图添加httpRuntime,当它已经存在于system.web的末尾。 为了解决这个问题,我进行了合并:
<httpRuntime maxRequestLength="102400" executionTimeout="1200" targetFramework="4.5"/>