La longitud de la cadena excede el valor establecido en la propiedad maxJsonLength. en MVC3

MVC3 (Archivo .cshtml)

$.getJSON(URL, Data, function (data) {

                    document.getElementById('divDisplayMap').innerHTML = data;

                    if (data != null) {
                        $('#myTablesId').show();
                        tdOnclickEvent();

                    }
                    else {
                        $('#myTablesId').hide();
                    }
                }).error(function (xhr, ajaxOptions, thrownError) { debugger; });

en el lado del servidor

 public JsonResult ZoneType_SelectedState(int x_Id, int y_Id)
    {
    JsonResult result = new JsonResult();
     result.Data = "LongString";//Longstring with the length mention below
    return Json(result.Data,"application/json", JsonRequestBehavior.AllowGet);
    }

desde el lado del servidor, estoy pasando la cadena con la longitud de 1194812 y más que eso. pero estoy recibiendo el error diciendo el

"Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property."

Por favor ayudame ASP

Respuestas a la pregunta(2)

Su respuesta a la pregunta