C# 解決Get請求數據量過大時被拒絕訪問

一: 在程序的web.config 中system.web 節點 裏面插入
<httpRuntime maxRequestLength="999999999" maxQueryStringLength="2097151" />
二:在程序的web.config 中sconfiguration 節點 裏面插入
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" maxQueryString="2147483647"/>
</requestFiltering>
</security>
</system.webServer>

這裏主要是經過配置WebConfig,來提升程序的接受數據量大小。web

若是不嚴謹能夠將Get請求轉爲POST請求也能夠解決。spa

相關文章
相關標籤/搜索