Every time i try to search the record i get error
{"Message":"Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property.","StackTrace":"   at System.Web.Script.Serialization.JavaScriptSerializer.Serialize(Object obj, StringBuilder output, SerializationFormat serializationFormat)\r\n   at System.Web.Script.Serialization.JavaScriptSerializer.Serialize(Object obj, SerializationFormat serializationFormat)\r\n   at System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext context, WebServiceMethodData methodData, IDictionary`2 rawParams)\r\n   at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)","ExceptionType":"System.InvalidOperationException"}
HTML 
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="SearchUploadPhoto.aspx.vb" Inherits="SMIS2022WEB.SearchUploadPhoto" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <script src="../Scripts/jquery-1.8.3.min.js"></script>
    <script src="../Scripts/ASPSnippets_Pager.min.js"></script>
    <title></title>
</head>
<script type="text/javascript">
    $(function () {
        GetCustomers(1);
        $("body").on("keyup", "[id*=txtSearch]", function () {
            GetCustomers(parseInt(1));
        });
        $("body").on("click", ".Pager .page", function () {
            GetCustomers(parseInt($(this).attr('page')));
        });
    });
    function SearchTerm() {
        return jQuery.trim($("[id*=txtSearch]").val());
    };
    function GetCustomers(pageIndex) {
        $.ajax({
            type: "POST",
            url: "SearchUploadPhoto.aspx/GetCustomers",
            data: '{searchTerm: "' + SearchTerm() + '", pageIndex: ' + pageIndex + '}',
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: OnSuccess,
            failure: function (response) {
                alert(response.d);
            },
            error: function (response) {
                alert(response.d);
            }
        });
    }
    var row;
    function OnSuccess(response) {
        var xmlDoc = $.parseXML(response.d);
        var xml = $(xmlDoc);
        var customers = xml.find("Customers");
        if (row == null) {
            row = $("[id*=SearchGrid] tr:last-child").clone(true);
        }
        var footer = $("[id*=SearchGrid] tr:last-child").clone(true);
        $("[id*=SearchGrid] tr").not($("[id*=SearchGrid] tr:first-child")).remove();
        if (customers.length > 0) {
            $.each(customers, function () {
                var customer = $(this);
                $("td", row).eq(0).html($(this).find("ADMNO").text());
                $("td", row).eq(1).html($(this).find("Name").text());
                $("td", row).eq(2).html($(this).find("Class").text());
                $("td", row).eq(3).html($(this).find("Stream").text());
                $("td", row).eq(4).html($(this).find("SEX").text());
                $("td", row).eq(7).html($(this).find("STATUS").text());
                $("td", row).eq(5).html($(this).find("studenttype").text());
                $("td", row).eq(6).html($(this).find("House").text());
                $("td", row).eq(8).html("<img src='" + $(this).find("Photo").text() + "' alt='" + $(this).find("Name").text() + "' height='25px' width='25px' />");
                $("td", row).eq(9).html("<a href='javascript:;' onclick='GetData(this)'>Select</a>");
                $("[id*=SearchGrid]").append(row);
                row = $("[id*=SearchGrid] tr:last-child").clone(true);
            });
            $("[id*=SearchGrid]").append(footer);
            var pager = xml.find("Pager");
            $(".Pager").ASPSnippets_Pager({
                ActiveCssClass: "current",
                PagerCssClass: "pager",
                PageIndex: parseInt(pager.find("PageIndex").text()),
                PageSize: parseInt(pager.find("PageSize").text()),
                RecordCount: parseInt(pager.find("RecordCount").text())
            });
            $(".Name").each(function () {
                var searchPattern = new RegExp('(' + SearchTerm() + ')', 'ig');
                $(this).html($(this).text().replace(searchPattern, "<span class = 'highlight'>" + SearchTerm() + "</span>"));
            });
        } else {
            var empty_row = row.clone(true);
            $("td:first-child", empty_row).attr("colspan", $("td", row).length);
            $("td:first-child", empty_row).attr("align", "center");
            $("td:first-child", empty_row).html("No records found for the search criteria.");
            $("td", empty_row).not($("td:first-child", empty_row)).remove();
            $("[id*=SearchGrid]").append(empty_row);
        }
    };
    function GetData(ele) {
        var row = $(ele).closest('tr');
        var id = $("td", row).eq(0).html();
        var name = $("td", row).eq(1).html();
        var classr = $("td", row).eq(2).html();
        var streamr = $("td", row).eq(3).html();
        $('[id*=hfId]').val(id);
        $('[id*=lblId]').html(id);
        $('[id*=Namesdata]').val(name);
        $('[id*=admn]').val(id);
        $('[id*=Classstream]').val(classr + streamr);
    }
</script>