出现这种情况一般是引用了.net standard 库
解决方案1:在web.config 文件中增加如下节点
<dependentAssembly>
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
解决方案2:或者仔细观察VS的编译后的警告,里面会有一个版本冲突警告,双击这个警告它就会把相关绑定配置加到web.config文件中。