Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6005523
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:24:33+00:00 2026-05-23T01:24:33+00:00

I have a string like the following in C#. I need to loop through

  • 0

I have a string like the following in C#. I need to loop through and create an HTML table output. I tried with JSON.NET but couldn’t figure out how to retrieve the keys (Name, Age & Job).

string data = "{items:[
{'Name':'AAA','Age':'22','Job':'PPP'}
,{'Name':'BBB','Age':'25','Job':'QQQ'}
,{'Name':'CCC','Age':'38','Job':'RRR'}]}";

The table format is

.........................  
| Name  | Age   | Job   |  
.........................  
| AAA   | 22    | PPP   |  
.........................  
| BBBB  | 25    | QQQ   |  
.........................  
| CCC   | 28    | RRR   |  
.........................   

Any help will be greatly appreciated.


The code provided by Dave is the ideal solution here.. but it work for .NET 4.0.. I have used following code with JSON.NET for .NET 3.5

using Newtonsoft.Json.Linq;

string jsonString = "{items:[{'Name':'Anz','Age':'29','Job':''},{'Name':'Sanjai','Age':'28','Job':'Developer'},{'Name':'Rajeev','Age':'31','Job':'Designer'}]}";

        JObject root = JObject.Parse(jsonString);

        JArray items = (JArray)root["items"];

        JObject item;
        JToken jtoken;

        for (int i = 0; i < items.Count; i++) //loop through rows
        {
            item = (JObject)items[i];
            jtoken = item.First;

            while (jtoken != null)//loop through columns
            {
                Response.Write(((JProperty)jtoken).Name.ToString() + " : " + ((JProperty)jtoken).Value.ToString() + "<br />");

                jtoken = jtoken.Next;
            }
        }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T01:24:34+00:00Added an answer on May 23, 2026 at 1:24 am

    You can use .NET 4’s dynamic type and built-in JavaScriptSerializer to do that. Something like this, maybe:

    string json = "{\"items\":[{\"Name\":\"AAA\",\"Age\":\"22\",\"Job\":\"PPP\"},{\"Name\":\"BBB\",\"Age\":\"25\",\"Job\":\"QQQ\"},{\"Name\":\"CCC\",\"Age\":\"38\",\"Job\":\"RRR\"}]}";
    
    var jss = new JavaScriptSerializer();
    
    dynamic data = jss.Deserialize<dynamic>(json);
    
    StringBuilder sb = new StringBuilder();
    
    sb.Append("<table>\n  <thead>\n    <tr>\n");
    
    // Build the header based on the keys in the
    //  first data item.
    foreach (string key in data["items"][0].Keys) {
            sb.AppendFormat("      <th>{0}</th>\n", key);
    }
    
    sb.Append("    </tr>\n  </thead>\n  <tbody>\n");
    
    foreach (Dictionary<string, object> item in data["items"]) {
        sb.Append("    <tr>\n");
    
        foreach (string val in item.Values) {
            sb.AppendFormat("      <td>{0}</td>\n", val);
        }
    }
    
    sb.Append("    </tr>\n  </tbody>\n</table>");
    
    string myTable = sb.ToString();
    

    At the end, myTable will hold a string that looks like this:

    <table>
        <thead>
            <tr>
                <th>Name</th>
                <th>Age</th>
                <th>Job</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>AAA</td>
                <td>22</td>
                <td>PPP</td>
            <tr>
                <td>BBB</td>
                <td>25</td>
                <td>QQQ</td>
            <tr>
                <td>CCC</td>
                <td>38</td>
                <td>RRR</td>
            </tr>
        </tbody>
    </table>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like following: CREATE GLOBAL TEMPORARY TABLE some_temp_table_name or CREATE GLOBAL
If I have a for loop like the following: foreach(string email in installerEmails.Split(',')) {
I need to loop through all the matches in say the following string: <a
I have a string like the following: $string = <paragraph>apples are red...</paragraph> <paragraph>john is
I have a string like the following: String str = 4*5; Now I have
I have a few procedures, for simplicity sake, look like the following: public string
I have the following string and I would like to remove <bpt *>*</bpt> and
I have the following string (japanese) ユーザー名 , the first character is like whitespace
I have the following String First Last <first.last@email.com> I would like to extract first.last
Supposed I have the following string: string str = <tag>text</tag>; And I would like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.