欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

webapi使用Get进行访问时,url长度被限制解决办法

程序员文章站 2022-11-21 15:07:06
打开Web.config,修改两处。

打开web.config,修改两处。

 

<system.web>
   
    <httpruntime maxurllength="109999" maxquerystringlength="2097151" />
  </system.web>
 <system.webserver>
  
    <security>
      <requestfiltering>
        <requestlimits maxurl="109999" maxquerystring="2097151" />
      </requestfiltering>
    </security>
  </system.webserver>