Skip to content Skip to sidebar Skip to footer

How To Read JSON And Display In Html Table In C#?

I have following JSON: {'ios_info':{'serialNumber':'F2LLMBNJFFFQ1','imeiNumber':'0138840041323551','meid':'','iccID':'89014104276400960452','firstUnbrickDate':'11\/27\/13','lastUnb

Solution 1:

Here is the solution:

string tbl = @"<table id='tblAppleResult'   cellspacing='0' cellpadding='3' border='1' style='width: 100%; border-collapse: collapse;'><tr>
                 <td>
                  </td>
                   <td>
                   </td>
                </tr>";
lblkeyValue.Text = tbl+GetKeyValuePairs(responseText)+"</table>";

Post a Comment for "How To Read JSON And Display In Html Table In C#?"