有什麼方法可以在ASP.net MVC中使用ajax加載超過2 MB數據(15000條記錄)。在ajax調用中,如果數據超過2 MB,ajax響應將變爲null,如果小於2 MB,它將完美呈現。如何從控制器加載大型數據集以在asp.net中查看mvc
我已經加入以下在我的web.config
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="2147483644" />
</webServices>
</scripting>
</system.web.extensions>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="524288000" />
</requestFiltering>
</security>
<add key="aspnet:MaxJsonDeserializerMembers" value="150000" />
但沒有爲我工作。請幫幫我。
在此先感謝,
Anoop Xaviour。
我總是發現加入 解決了這些問題。 –