引入System.Net.Http后,运行页面还是报错
ASP.NET 未能找到类型或命名空间名称“HttpRequestMessage”-LMLPHP

using System.Net.Http;

ASP.NET 未能找到类型或命名空间名称“HttpRequestMessage”-LMLPHP

chatGPT解释需要安装Microsoft.AspNet.WebApi.Client包,IIS安装的包文件存储在bin目录下,安装包后bin目录多出了一些列文件
ASP.NET 未能找到类型或命名空间名称“HttpRequestMessage”-LMLPHP
运行页面后还是报错

需要在web.config配置文件中加入程序集引用

ASP.NET 未能找到类型或命名空间名称“HttpRequestMessage”-LMLPHP
增加System.Net.Http程序集

  <system.web>
    <compilation debug="true" batch="false" targetFramework="4.5">
      <assemblies>
        <add assembly="System.Net.Http" />
      </assemblies>
    </compilation>
    <httpRuntime maxRequestLength="2147483647" executionTimeout="120000" />
  </system.web>
05-27 05:52