码迷,mamicode.com
首页 > Web开发 > 详细

Asp.net简单的输出json字符串

时间:2016-05-26 18:48:12      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

创建model类,声明所需要的字段

 public class model
    {
        public model()
        {
            Id = string.Empty;
            name = string.Empty;
            time = string.Empty;
            Status = string.Empty;
        }
        public string Id { get; set; }
        public string name { get; set; }
        public string time { get; set; }
        public string Status { get; set; }
    }

页面输出

 string str = "";
            string sql = "select time,name,id from name order by time desc";
            DataTable dt = new DB.DB().RunSqlGetDataTable(sql);
            List<model> list = new List<model>();
            if (dt != null && dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    model m = new model();
                    m.Id = dt.Rows[i]["id"].ToString();
                    m.name = dt.Rows[i]["name"].ToString();
                    m.time = dt.Rows[i]["time"].ToString();
                    list.Add(m);
                }
            }
            str = JsonConvert.SerializeObject(list);
            context.Response.Write(str);

命名空间引用

using System.Data;
using Newtonsoft.Json;

页面输出效果

技术分享

 

Asp.net简单的输出json字符串

标签:

原文地址:http://www.cnblogs.com/jingyong001/p/5531922.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!