How to pass the JSONArray from one JSP to another JSP and show the results in table?
问题 Below is my JSP page (abc.jsp) from which I am calling another JSP page jspConnection.jsp using the jQuery and then jspConnection.jsp will return me back the query result to abc.jsp and then I need to use the result to show them in a table - Below code I have in abc.jsp from which I am calling jspConnection.jsp - $.post("jspConnection.jsp", {'id': id}, function (data) { // make a new table here from JSONObject // and show the result here } ); Table should look like this in abc.jsp after