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>
上一篇: 高血压的春季饮食调理
下一篇: webapi日志记录(TXT存储)