有時我們在前端使用ajax時,會將大量資料傳至後端
這時可能會因為url長度的限制而失敗,以下的設定可以將url的長度加大,讓更多的資料傳至後端!
在web.config當中
<system.web> <httpruntime maxquerystringlength="2097151" maxurllength="10999"> ...
<system.webserver> <security> <requestfiltering> <requestlimits maxquerystring="2097151" maxurl="10999"> </requestlimits></requestfiltering> </security> ...
David 20171003
沒有留言: