weixin_33712881 2016-01-09 19:05 采纳率: 0%
浏览 38

VB.NET同时返回字符串

I have a VB.NET function that is called via AJAX on the front end. The AJAX call passes back some arguments, and the function on the backend generates an HTML table, and returns it to the front end as a string. For example, I would get back something like: <table><tr><td>hello</td></tr></table>.

My VB function looks like:

Public Shared Function MakeTable(arg1, arg2) as String
   ' Do magic
   return myTableInStringFormat
End Function

I have run into some issues while using my code and narrowed it down the length of a string coming from the backend. When the string that comes back is greater than 65535 characters it does not make it to the front end. I believe this has to do with the following: https://msdn.microsoft.com/en-us/library/wdzat713.aspx

How do I return back data while avoiding the string character line limit? Line continuation characters seem to be the answer, but I'm not sure how those can be used due to me needing to return a string.

EDIT1: More code. Here is my AJAX postback code, as well as the table appending code:

function GetMyTable(arg1, arg2) {
   type: "POST",
   url: myHandler.ashx/MakeTable",
   data: "{'arg1':'" + arg1+ "','arg2':'" + arg2+ "'}",
   contentType: "application/json; charset=utf-8",
   dataType: "json",

   success: function (msg) {
      $("#myTable").empty().append("").append(msg.d);
      },

   error: function () {
      alert("Failed to load ");
   }
   });
   }

EDIT2. Here is the backend function the AJAX calls:

<System.Web.Services.WebMethod()> _
Public Shared Function MakeTable(arg1 As String, arg2 As String) As String
   Dim dString As New StringBuilder
   ' Some datareader gets data from database...
    dString.Append("<tr><td>hello</td></tr>")
    return dString.toString()
End Function
  • 写回答

1条回答 默认 最新

  • weixin_33716557 2016-01-19 23:56
    关注

    Figured out the problem. Ends up the JSON string size was limited. I added the following to my web.config and all is well!

        <scripting>
    
          <webServices>
    
            <jsonSerialization maxJsonLength="2147483644"></jsonSerialization>
    
          </webServices>
    
        </scripting>
    
      </system.web.extensions>
    
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀