Articles
FAQs
Login
ASP.NET Error during serialization using JSON Serializer
By [)ia6l0 iii
INSTANTLY dtSearch TERABYTES OF POPULAR DATA TYPES; hundreds of reviews, etc.!
Increase the max length of the maxJsonLength attribute in the jsonSerializtion node in your web.config file to fix this issue.
<
webServices
>
<
jsonSerialization
maxJsonLength
="25000000">
</
jsonSerialization
>
</
webServices
>
Related FAQs
ASP.Net Speed your page response by using the Overrides
Use the Override versions of the page methods instead of thedefault page methods. This would ensure that the .Net runtime does not have to invoke delegates.
Get the url of the previous request in ASP.Net
Use the "UrlReferrer" property of the Request object to retrieve the previous page url.
Find if a request is from a Secure Connection
Use the "IsSecureConnection" property of the HttpRequest object to find if a Request is from a HTTP or HTTPS connection
ASP.Net - Find if a Request is of type Json
You can check the contenttype of the request, and figure out if the request is an JSon request
Browser name in ASP.Net
Use the HtpContext's Request object to determine the Browser name.
ASP.Net - Ajax Error handling
You can handle errors in ASP.Net Ajax web pages using some Javascript code.
ASP.NET Error during serialization using JSON Serializer
(
695 Views
)