使用jQuery json的ASP.NET WebMethod,是否有大小限制?

时间:2010-11-14 22:09:07

标签: asp.net jquery

我正在使用jquery调用webmethod,webmethod返回一大块HTML,然后将其加载到div中。

它工作正常,直到一定大小的块然后它根本不起作用。如果html的块大于70KB,它似乎停止工作。

我正在使用的jQuery是:

 $(".letterBtn").live("click", function() {
    $("#divLoading").html('<img src="images/loading.gif" alt="Loading..." />');
    $.ajax({
        type: "POST",
        url: "Default.aspx/Search",
        data: "{sFor:" + "'" + this.id + "'" + "}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(msg) {
            $("#divOut").html(msg.d);
            $("#divLoading").html('');
        }
    });
});

网络方法与此类似

  <WebMethod()> _ Public Shared Function Search(ByVal sFor As String) As String
    Dim htmlString As String = "<div>some html</div>"
    Return htmlString
End Function

我似乎无法弄清楚为什么它不适用于较大的HTML块。有人有什么想法吗?谢谢!

1 个答案:

答案 0 :(得分:12)

发现我之后的情况,默认设置似乎是100k,我在web.config文件中设置了以下内容。我想我现在会重新考虑html块,它似乎不是最好的解决方案。

<webServices>
<jsonSerialization maxJsonLength="10000000"/>
</webServices>