Can I set an unlimited length for maxJsonLength in web.config?

后端 未结 29 3655
礼貌的吻别
礼貌的吻别 2020-11-21 06:43

I am using the autocomplete feature of jQuery. When I try to retrieve the list of more then 17000 records (each won\'t have more than 10 char length), it\'s exceeding the le

29条回答
  •  孤城傲影
    2020-11-21 07:37

    you can write this line into Controller

    json.MaxJsonLength = 2147483644;
    

    you can also write this line into web.config

    
      
        
            
                
                
            
        
      
    

    `

    To be on the safe side, use both.

提交回复
热议问题